Skip to main content
POST
/
webhooks
/
replay
curl --request POST \
  --url https://api.jetemail.com/webhooks/replay \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_id": "evt_abc123"
}
'
{
  "success": true,
  "event_id": "evt_abc123",
  "status": "enqueued",
  "message": "Event re-queued for delivery"
}

Authorizations

Authorization
string
header
required

API key for account management endpoints. Use your api_ prefixed token.

Body

application/json
event_id
string

Event ID to replay

Example:

"evt_abc123"

source_uid
string

Source message UID to replay events for

Example:

"message-uid-xyz"

uuid
string<uuid>

Optional: Replay to a specific webhook config

Example:

"a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d"

Response

Event re-queued for delivery

success
boolean
Example:

true

event_id
string

Event ID that was replayed

Example:

"evt_abc123"

status
enum<string>

Status of the replay request

Available options:
enqueued
Example:

"enqueued"

message
string

Human-readable message

Example:

"Event re-queued for delivery"