Skip to main content
DELETE
https://api.enviaai.app
/
v1
/
webhooks
/
{webhookId}
Excluir Webhook
curl --request DELETE \
  --url https://api.enviaai.app/v1/webhooks/{webhookId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Webhook deleted successfully"
}

Path Parameters

webhookId
string
required
ID do webhook

Exemplo

await client.webhooks.delete('wh_xyz789');
{
  "success": true,
  "message": "Webhook deleted successfully"
}