Webhooks

Resend a webhook message

Redelivers an existing webhook message with its original payload. Defaults to every enabled endpoint subscribed to the event type; pass endpointId to target a single endpoint.

post/v1/webhooks/messages/{messageId}/resend

Path parameters

messageIdstring required
Example:msg_1234567890abcdef

The ID of the webhook message

Headers

X-API-Keystring

API key

Request body

endpointIdstring

Resend to a single endpoint. Defaults to every enabled endpoint subscribed to the message event type.

Example request

{
  "endpointId": "ep_1234567890abcdef"
}

Response

Webhook message resent successfully

eventTypestring required
endpointIdsstring[] required

Endpoints the message was resent to

Example response

{
  "eventType": "transfer.completed"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.