Get Sales Tax Transactions (Drill-Down)
GET/api/reporting/sales-tax/liability/transactions
Paginated transaction drill-down behind a single jurisdiction row of the liability report. Returns the underlying orders and credits (credit amounts are negative) that compose the aggregated row, filtered by the same parameters plus the selected province_code / country_code.
reports:readGrant this scope to your token under Settings → Developer → Personal Access Tokens.
Authentication: Requires Bearer token (scope rw:reports).
Required parameters:
- date_from, date_to
Optional: channel_ids[], country_code, order_statuses[], province_code, page, per_page (1-200).
Results are a UNION of sales orders and sales credits ordered by transaction date descending, returned in the standard Laravel pagination envelope.
Request
Responses
- 200
- 401
- 403
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.