List Orders
Intent
Reads the available orders as a pageable collection without changing them.
When to call it
Call this when an interface, sync, or support workflow needs to inspect orders. Use the filters and paging controls shown below to limit the result.
Access boundary
Authorize the request with a token that carries orders:read.
Successful result
A successful request returns 200. The response schema below defines the body your integration receives.
Authorizations
Query Parameters
Return only records matching organization ID. Identifier of the organization.
"1dbfc517-0bbf-4301-9ba8-555ca42b9737"
Return only records matching product ID. Identifier of the product.
Return only records matching product billing type. recurring will filter data corresponding to subscriptions creations or renewals. one_time will filter data corresponding to one-time purchases.
one_time, recurring Return only records matching discount ID.
Return only records matching customer ID. Identifier of the customer.
Return only records matching customer external ID. Identifier of the customer external.
Return only records matching checkout ID.
Return only records matching subscription ID. Identifier of the subscription.
Results page to return. The first page is used by default.
Records returned per page. Defaults to 10 and accepts up to 100.
Sort rules applied from left to right. Prefix any rule with - to reverse it into descending order.
created_at, -created_at, status, -status, invoice_number, -invoice_number, amount, -amount, net_amount, -net_amount, customer, -customer, product, -product, discount, -discount, subscription, -subscription Return only records matching metadata key-value pairs. It uses the deepObject style, e.g. ?metadata[key]=value.