Skip to main content
POST
/
api
/
v2
/
webhooks
/
{id}
/
test
Test a webhook
curl --request POST \
  --url https://api.instantly.ai/api/v2/webhooks/{id}/test \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Webhook test successful",
  "response_time_ms": 250,
  "status_code": 200,
  "error": "Connection timeout"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required
Example:

"019cc043-e3fb-7930-9172-2ae298b8ae16"

Response

Default Response

success
boolean
Example:

true

message
string
Example:

"Webhook test successful"

response_time_ms
number
Example:

250

status_code
number
Example:

200

error
string
Example:

"Connection timeout"