v2

latestOpenAPI 3.1.12026-08-0785394779.1 KB
Events

Replay an event

Replays an event by creating new deliveries to all currently matching subscription endpoints. Each delivery performs a single attempt and does not trigger automatic retries.

post/events/{event_id}/replay

Path parameters

event_idstring required
Example:evt_3b1333d87d9d4fd6ad83ba7f6b0e951a

Headers

X-Platform-Idstring

The target platform id. Required only when calling with a dashboard (WorkOS AuthKit) access token instead of a platform API key — the token carries no platform claim, so the caller must say which platform it means. Ignored for platform API key / embed session token callers.

Response

OK

event_idstring required

Example response

{
  "event_id": "evt_3b1333d87d9d4fd6ad83ba7f6b0e951a",
  "deliveries": [
    {
      "delivery_id": "evtd_3b1333d87d9d4fd6ad83ba7f6b0e951a",
      "success": true,
      "elapsed_time_ms": 123.45
    }
  ]
}