Skip to main content
DELETE
/
api
/
v1
/
webhooks
/
{id}
Delete Webhook
curl --request DELETE \
  --url https://api.agentwallex.com/api/v1/webhooks/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "deleted": true
}

Path Parameters

id
string
required
The webhook ID to delete (e.g., whk_abc123).

Example

curl -X DELETE https://api.agentwallex.com/api/v1/webhooks/whk_abc123 \
  -H "X-API-Key: awx_your_api_key"

Authorizations

X-API-Key
string
header
required

API key authentication. Keys are prefixed with awx_.

Path Parameters

id
string
required

The webhook ID to delete (e.g., whk_abc123).

Response

Webhook deleted successfully.

id
string

The deleted webhook ID.

deleted
boolean

Confirmation of deletion.