Skip to main content
POST
/
api
/
v1
/
webhooks
/
test
Test a webhook
curl --request POST \
  --url https://www.itsconvo.com/api/v1/webhooks/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "webhookId": "wh_abc123"
}
'
{
  "data": {
    "webhookId": "wh_abc123",
    "delivered": true,
    "statusCode": 200
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
webhookId
string
required

ID of the webhook to test

Example:

"wh_abc123"

Response

Test result