Delete Webhook

Delete a webhook configuration.

Removes a webhook configuration. You will stop receiving event notifications at the webhook URL.

Endpoint

DELETE /v1/webhooks/:id

Authentication

Header
Value

x-api-key

Your API key

Path parameters

Parameter
Type
Description

id

string

Webhook UUID

Example request

curl -X DELETE https://ramp-api.ivorypay.io/api/v1/webhooks/wh-uuid-1 \
  -H "x-api-key: your_api_key"

Example response

{
  "statusCode": 200,
  "success": true,
  "message": "Webhook deleted successfully"
}

Last updated