Get Kitting Work Orders

View as Markdown

Returns kitting work orders belonging to the authenticated merchant, optionally filtered by completion date range, fulfillment center, and external-sync status. Intended for idempotent polling.

Authentication

AuthorizationBearer

Authentication using Personal Access Token (PAT) token

OR
AuthorizationBearer
OAuth2 authentication using JWT tokens

Query parameters

completed_fromstringOptional

Inclusive lower bound on completion timestamp. Must carry a zone designator, either a trailing Z (e.g. 2026-01-01T00:00:00Z) or an explicit offset (e.g. 2026-01-01T00:00:00-05:00), and is compared as the UTC instant it denotes. Values without a zone designator are rejected with a 400.

completed_tostringOptional

Inclusive upper bound on completion timestamp. Must carry a zone designator, as with completed_from. Values without one are rejected with a 400, as is a range where completed_to precedes completed_from.

fulfillment_center_idintegerOptional
Filter results to a single fulfillment center.
is_externally_syncedbooleanOptional
Pass false to retrieve only work orders that have not yet been externally synced.
pageintegerOptionalDefaults to 1

1-based page number.

limitintegerOptionalDefaults to 50
Page size. Maximum 250.

Response

Success
datalist of objectsOptional
The kitting work orders for this page.
limitintegerOptional
The page size used for this response.
pageintegerOptional
The current page number.
totalintegerOptional
Total number of kitting work orders matching the filters, across all pages.

Errors

500
Internal Server Error