Skip to main content
POST
/
integrations
/
api
/
v1
/
webhooks
/
deliveries
/
{delivery_id}
/
replay
Replay a dead-lettered delivery
curl --request POST \
  --url https://www.closient.com/integrations/api/v1/webhooks/deliveries/{delivery_id}/replay/ \
  --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

delivery_id
string<uuid>
required

Unique identifier of the delivery to replay.

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.