Convo
API ReferenceWebhooksTest

Test a webhook

Sends a test event to a registered webhook URL and returns the delivery status. Professional plan and above.

POST
/api/v1/webhooks/test

Authorization

AuthorizationRequiredBearer <token>

API key as Bearer token. Generate keys in your Convo dashboard settings.

In: header

Request Body

application/jsonRequired
webhookIdRequiredstring

ID of the webhook to test

curl -X POST "https://www.itsconvo.com/api/v1/webhooks/test" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "webhookId": "wh_abc123"
  }'

Test result