Webhooks

Delete Webhook

Stop delivering events to this endpoint and remove it.

Stop delivering events to this endpoint and remove it. Deleting an ID that does not exist also succeeds, so the call is safe to repeat. Deliveries already in flight may still arrive.

DELETE
/api/v1/webhooks/{webhookId}
AuthorizationBasic <token>

Basic API key authentication. Create a new API key and secret in the Recommand dashboard.

In: header

Path Parameters

webhookId*string

The ID of the webhook to delete

Response Body

application/json

application/json

curl -X DELETE "https://app.recommand.eu/api/v1/webhooks/string"
{
  "success": true
}
{
  "success": false,
  "errors": {
    "property1": [
      "string"
    ],
    "property2": [
      "string"
    ]
  }
}