List Fulfillment Orders
GET/api/shopify/:integrationInstance/fulfillment-orders
List synced Shopify fulfillment orders for an integration instance (paginated, default 10 per page).
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Filters (Spatie QueryBuilder):
- filter[search] — free-text across legacy_resource_id, status, order name, location name
- filter[status] — text operators on the fulfillment order status (e.g. open, in_progress, scheduled, cancelled, on_hold, incomplete, closed)
- filter[id] — numeric operators on the primary key
- filter[total_quantity] — numeric operators on the summed line-item total_quantity
- filter[order_name] — text operators on the related Shopify order name
- filter[location_name] — text operators on the related location name
- filter[order_id] — exact match on shopify_order_id
- filter[shopify_created_at] / filter[shopify_updated_at] — datetime operators
Sort (sort=): id, status, shopify_created_at, shopify_updated_at (prefix with - for descending). Default: -id.
Pagination: page, per_page.
Authentication: Requires Bearer token.
Request
Responses
- 200
- 401
- 403
- 404
- 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.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
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.