Skip to main content
POST
/
integrations
/
api
/
v1
/
webhooks
/
endpoints
/
{endpoint_id}
/
test
Send test event
curl --request POST \
  --url https://www.closient.com/integrations/api/v1/webhooks/endpoints/{endpoint_id}/test/ \
  --header 'X-API-Key: <api-key>'
{
  "delivery_id": "<string>",
  "status": "<string>",
  "http_status_code": 123,
  "response_body": "<string>"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

endpoint_id
string<uuid>
required

Unique identifier of the webhook endpoint.

Response

200 - application/json

OK

Response schema for a test delivery result.

delivery_id
string
required

ID of the created delivery record.

status
string
required

Delivery status after the test.

http_status_code
integer | null

HTTP status from the endpoint.

response_body
string | null

First 256 chars of response body.