Platitun · API · Event subscription · The delivery log

The delivery log

GET /api/v1/hooks/deliveries

Key scope: hooks · read only

Here is the answer to “you never sent it” — “we did”: the event, the time, the attempt count, your receiver’s answer code and the error text. One record per event, not per attempt.

The skipped_paused status marks an event that happened while delivery was paused. It is recorded deliberately: silence would hide from you exactly what you did not receive.

Query filters

FieldTypeWhat it is
limitintegerHow many records to return. Default 50, maximum 200.
cursorstringThe nextCursor value from the previous response. There are no page numbers: the list changes while you page.

Response fields

FieldTypeWhat it is
itemsarrayThe records of this page.
items[].eventstringWhich event.
items[].statusstringpending, delivered, given_up or skipped_paused.
items[].attemptintegerWhich attempt is running or where it stopped.
items[].httpStatusinteger|nullWhat your receiver answered.
items[].errorstring|nullWhat exactly failed.
items[].nextAttemptAtstring|nullWhen the next attempt happens.
nextCursorstring|nullThe next page cursor. Empty — this is the last page.

Nearby in this section