Skip to content

Delete a webhook endpoint

Request

Soft-delete (disable) a webhook endpoint. Delivery history is retained.

Security
ApiKeyAuth
Path
idstringrequired
Headers
Idempotency-Keystring, <= 255 characters

Optional opaque key (e.g. a UUID) to make this write safely retryable. A replay with the same key returns the original response instead of repeating the side effect.

curl -i -X DELETE \
  'https://api.pioneerft.com/api/public/v1/webhook-endpoints/{id}' \
  -H 'Authorization: Bearer <YOUR_API Key_HERE>' \
  -H 'Idempotency-Key: string'

Responses

Endpoint deleted

Bodyapplication/json
messagestring
Example:"Webhook endpoint deleted"
Response
{ "message": "Webhook endpoint deleted" }