Saltar al contenido principal
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
}

Parámetros de ruta

id
string
requerido
ID del Webhook a eliminar (por ejemplo, whk_abc123).

Ejemplo

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

Autorizaciones

X-API-Key
string
header
requerido

API key authentication. Keys are prefixed with awx_.

Parámetros de ruta

id
string
requerido

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

Respuesta

Webhook deleted successfully.

id
string

The deleted webhook ID.

deleted
boolean

Confirmation of deletion.