# Delete webhook endpoint

This method allows you to delete an existing webhook endpoint.
For that, you need to provide the endpoint identifier you want to delete.

Endpoint: DELETE /webhooks/endpoints/{id}
Version: 1.0.0
Security: MerchantID

## Header parameters:

  - `merchant` (string, required)
    Unique public key provided upon registration and must be shared for identification purposes.
    Example: "api_pk_7b197...ba108f842"

  - `signature` (string, required)
    Request signature that allows verification of merchant authenticity on the payment gateway server.
    Example: "M2E3OTkyNzcz...xMmExODI4"

## Path parameters:

  - `id` (string, required)
    Webhook endpoint identifier.

## Response 200 fields (application/json):

  - `error` (object, required)
    Error object.

  - `error.code` (string, required)
    Unauthorized access due to invalid credentials.
    Example: "1.01"

  - `error.messages` (array, required)
    Array of error messages applied to the decline payment.
    Example: ["Authentication failed"]


## Response 204 fields
