List transactions

View as Markdown
Pages through your company's transaction ledger — purchases, adjustments, redemptions, signups, refunds, and migration imports across every customer. Filter by `storeId` to scope to one store. There is deliberately no `type` filter yet: sending one returns 400 rather than being silently ignored. `page` is 1-based; `pageSize` defaults to 20 and is capped at 100.

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

pagestringOptional

1-based page number. Defaults to 1.

pageSizestringOptional
Rows per page. Defaults to 20, capped at 100.
storeIdstringOptional

Filter by store id (see GET /api/v1/stores). Partner-API writes are store-less and never match a store filter.

Response

totaldouble

Total row count after server-side filtering — drives total-page math.

pagedouble

1-based page number that produced items.

pageSizedouble

Page size honored by the server (may be a clamp of the requested value).

itemslist of objects
The ledger rows on this page.

Errors

400
Bad Request Error
401
Unauthorized Error
429
Too Many Requests Error
503
Service Unavailable Error