postReplay event to webhook subscriptions

Required capabilityevents.readwebhooks.manage

Schedules webhook deliveries for a stored event. Omit subscription_ids to replay to every active matching subscription.

Request

Request URL

POST
POST /events/{event_id}/replay

Request Body

application/json
{
  "subscription_ids": [
    "b8e2f1a0-4c3d-4e5f-9a1b-2c3d4e5f6a7b"
  ]
}

Responses

Response

application/json
{
  "accepted": true,
  "replayed_event_id": "b8e2f1a0-4c3d-4e5f-9a1b-2c3d4e5f6a7b",
  "targeted_subscription_ids": [
    "b8e2f1a0-4c3d-4e5f-9a1b-2c3d4e5f6a7b"
  ]
}

Request accepted for asynchronous processing. Poll the returned operation ID to track status transitions.