List Transactions
Get your transaction logs — transaction API calls with their action, request/response, and timing. Results are sorted by most recent first by default, and can be reordered with order_by / order_direction.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Page number (1-indexed). Defaults to 1.
Number of items per page. Defaults to 50, capped at 100.
x <= 100Filter to a single transaction by its UUID.
Filter to transactions associated with this order UUID.
Filter to transactions associated with this purchase order number.
Filter by execution status. An invalid value returns 400.
SUCCESS, FAILURE, RETRY, PENDING, SKIP Filter by action type. An invalid value returns 400.
POST_ORDER_TO, CREATE_ORDERS_FROM, INGEST_PURCHASE_ORDER, INGEST_PURCHASE_ORDER_CHANGE, FETCH_ORDER_UPDATES, SEND_SHIPMENT_CONFIRMATION, SEND_TRACKING, SEND_PO_ACK, SEND_ASN, SEND_INVOICE, PO_ACK_STATUS_CHECK, ASN_STATUS_CHECK, INVOICE_STATUS_CHECK, INGEST_ORDER_PUT Comma-separated retailer UUIDs (e.g. a,b,c). Matches transactions scoped to any of the listed retailers.
Comma-separated brand UUIDs. Matches transactions scoped to any of the listed brands.
Comma-separated facility UUIDs. Matches transactions scoped to any of the listed facilities.
When true, returns only transactions with a non-null error message; when false, only those without. Case-insensitive. Independent of execution_status. Any value other than true/false returns 400.
Return transactions created on or after this date. Accepts a date or datetime; compared by calendar date, so the whole day is included.
Return transactions created on or before this date. Accepts a date or datetime; compared by calendar date, so the whole day is included.
Free-text search. Matches (case-insensitive, partial) against transaction_id, order_id, correlation_id, error_message, and request_url.
Field to sort by. Defaults to created_at. Unknown values fall back to the default (no error).
created_at, updated_at, execution_status, action_type Sort direction. Defaults to desc. Unknown values fall back to the default (no error).
asc, desc Response
Transactions retrieved successfully
Paginated list response.

