v1

latestOpenAPI 3.0.1MIT2026-07-261190449.2 KB
Callbacks

Get Callback Log (Deprecated)

Deprecated: This endpoint is deprecated and will be removed in a future release. Use GET /callbacks instead.

Get a list of all callbacks we produced for you, whether we could send them to you or not. This log contains all callbacks Pliant produced, together with a status and further metadata to let you investigate problems etc. You can add optional filters to narrow down the results. To get the payload of a specific callback, use the GET /callbacks/{callbackId} endpoint.

get/subscriptions/callback-log

Query parameters

organizationIdstring uuid

Filter by organization id.

entityIdstring uuid

Filter by single entity id.

entityIdsstring[]

Filter by (multiple) entity ids.

eventTypestring

Filter by event type.

status'UNSENT' | 'IN_PROGRESS' | 'SENT' | 'FAILED' | 'SKIPPED' | 'TO_BE_SEND_IMMEDIATELY'

Filter by status. The status of the callback. The callback starts as UNSENT, transitions to IN_PROGRESS, then to SENT or FAILED. If the callback is skipped (mostly due to manual interventions), it will be marked as SKIPPED. The status TO_BE_SEND_IMMEDIATELY is a short-lived, intermediate status similar to UNSENT.

fromDatestring date-time
Example:2024-07-19T15:00:00.000000Z

The from date to filter by as zero-offset UTC time. The date boundary is inclusive. Meaning we compare with >=.

toDatestring date-time
Example:2024-07-19T15:00:00.000000Z

The to date to filter by as zero-offset UTC time. The date boundary is inclusive. Meaning we compare with <=.

byDateField'createdAt' | 'sentAt'

The date field to filter by if fromDate and toDate are present.

limitinteger

The maximum number of items to return per page. The default value if not provided is 100, the maximum allowed value is 1000.

pageinteger

The page number to return, starting with 0, this counts up to the total number of pages. The total number of pages is determined by the total number of records divided by the limit.

sortBy'organizationId' | 'status' | 'eventType' | 'createdAt'

The field to sort by.

sortDirection'ASC' | 'DESC'

The direction to sort by.

Response

Ok

hasNextPageboolean

Indicates whether there is a next page available.