Get webhook replay status
GET/v1/webhook_endpoints/{endpoint}/replays/{replay}
Read durable replay progress and its immutable terminal verdict.
During ordinary operation, a successfully completed replay remains
readable for at least 30 days after terminal_at, then returns the same
tenant-scoped 404 as an unknown replay. Pending and running replays are
never age-swept; failed replay evidence has no scheduled expiry.
Get webhook replay status
curl https://whatsapp.messages.api.linqapp.com/v1/webhook_endpoints/$ENDPOINT/replays/$REPLAY \
-H "Authorization: Bearer $LINQ_WHATSAPP_API_KEY"{
"id": "id",
"after_cursor": "after_cursor",
"created_at": "2019-12-27T18:11:19.117Z",
"delivered": 0,
"delivering": 0,
"exhausted": 0,
"failure_reason": "failure_reason",
"materialized": 0,
"pending": 0,
"selected": 0,
"started_at": "2019-12-27T18:11:19.117Z",
"state": "pending",
"terminal_at": "2019-12-27T18:11:19.117Z",
"through_cursor": "through_cursor",
"unmaterialized": 0
}Returns Examples
{
"id": "id",
"after_cursor": "after_cursor",
"created_at": "2019-12-27T18:11:19.117Z",
"delivered": 0,
"delivering": 0,
"exhausted": 0,
"failure_reason": "failure_reason",
"materialized": 0,
"pending": 0,
"selected": 0,
"started_at": "2019-12-27T18:11:19.117Z",
"state": "pending",
"terminal_at": "2019-12-27T18:11:19.117Z",
"through_cursor": "through_cursor",
"unmaterialized": 0
}