Skip to main content
GET
Export sales orders (incremental)

Authorizations

Authorization
string
header
required

Authenticate using a bearer token. To create a token, navigate to /settings/api-tokens and click Create API Token.

Query Parameters

since
string<date-time>

UTC datetime marking the start of the export window. Required when starting a new run. Cannot be combined with cursor.

Example:

"2024-01-01T00:00:00Z"

cursor
string

Signed continuation token from a previous export response. Required when continuing a run. Cannot be combined with since.

Example:

"eyJ2IjoxLCJtb2RlIjoiZXhwb3J0In0.abc123"

limit
integer
default:1000

Maximum number of orders to return per page.

Required range: 1 <= x <= 1000

Response

Successful export page

data
object[]
next_cursor
string | null

Signed cursor token to fetch the next page. Null when the export is complete.

Example:

"eyJ2IjoxLCJtb2RlIjoiZXhwb3J0In0.abc123"

has_more
boolean

Whether more pages exist in this export run.

meta
object