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
Example response
{
"event_id": "evt_3b1333d87d9d4fd6ad83ba7f6b0e951a",
"deliveries": [
{
"delivery_id": "evtd_3b1333d87d9d4fd6ad83ba7f6b0e951a",
"success": true,
"elapsed_time_ms": 123.45
}
]
}Changes
Changed in 1 of the 10 revisions of this API.1
- ○
added the new optional
headerrequest parameterX-Platform-Idnew-optional-request-parameter
This revision also has 6 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○