List webhook delivery history
Lists webhook deliveries and their retained applied attempts, newest
delivery first. Without an exact delivery_id, event_id, or trace_id
lookup, the time window defaults to the latest 24 hours and cannot exceed
30 days. Exact identifiers may reach older retained evidence.
Successful delivery detail becomes eligible for sweeping after 30 days; failed evidence may remain longer. The response therefore publishes an inclusive successful-history incompleteness horizon and the instant when attempt-history collection began. Neither is a blanket retention promise.
spent_attempt_count can exceed observed_attempt_count when an attempt
ends without a retained verdict. Such a gap is reported, never filled with
an invented attempt result. Payloads, bodies, headers, credentials,
signatures, diagnostic errors and destination URL paths are never returned.
Query Parameters
List webhook delivery history
curl https://whatsapp.messages.api.linqapp.com/v1/webhook_deliveries \
-H "Authorization: Bearer $LINQ_WHATSAPP_API_KEY"{
"attempt_history_coverage_started_at": "2019-12-27T18:11:19.117Z",
"data": [
{
"id": "id",
"attempt_history_complete": true,
"attempts": [
{
"attempt": 0,
"attempt_completed_at": "2019-12-27T18:11:19.117Z",
"attempt_started_at": "2019-12-27T18:11:19.117Z",
"destination": "destination",
"http_status": 0,
"phase": "phase",
"reason_code": "reason_code",
"verdict": "verdict",
"wire_completed_at": "2019-12-27T18:11:19.117Z",
"wire_duration_ms": 0,
"wire_started_at": "2019-12-27T18:11:19.117Z",
"trace_id": "trace_id"
}
],
"created_at": "2019-12-27T18:11:19.117Z",
"endpoint_id": "endpoint_id",
"event_id": "event_id",
"event_kind": "event_kind",
"observed_attempt_count": 0,
"seq_from": 0,
"seq_to": 0,
"spent_attempt_count": 0,
"state": "state",
"chat_id": "chat_id"
}
],
"has_more": true,
"older_successful_history_may_have_been_swept": true,
"successful_history_incomplete_through": "2019-12-27T18:11:19.117Z",
"next_cursor": "next_cursor"
}Returns Examples
{
"attempt_history_coverage_started_at": "2019-12-27T18:11:19.117Z",
"data": [
{
"id": "id",
"attempt_history_complete": true,
"attempts": [
{
"attempt": 0,
"attempt_completed_at": "2019-12-27T18:11:19.117Z",
"attempt_started_at": "2019-12-27T18:11:19.117Z",
"destination": "destination",
"http_status": 0,
"phase": "phase",
"reason_code": "reason_code",
"verdict": "verdict",
"wire_completed_at": "2019-12-27T18:11:19.117Z",
"wire_duration_ms": 0,
"wire_started_at": "2019-12-27T18:11:19.117Z",
"trace_id": "trace_id"
}
],
"created_at": "2019-12-27T18:11:19.117Z",
"endpoint_id": "endpoint_id",
"event_id": "event_id",
"event_kind": "event_kind",
"observed_attempt_count": 0,
"seq_from": 0,
"seq_to": 0,
"spent_attempt_count": 0,
"state": "state",
"chat_id": "chat_id"
}
],
"has_more": true,
"older_successful_history_may_have_been_swept": true,
"successful_history_incomplete_through": "2019-12-27T18:11:19.117Z",
"next_cursor": "next_cursor"
}