Get Order By ID
GET/api/magento2/integration-instances/:magento2IntegrationInstance/orders/:magento2Order
Fetch a single Magento 2 order by its internal ID, scoped to the supplied integration instance. The response includes the Magento money block, timestamps, the resolved Magento admin URL, all line items, shipments, invoices, credit memos, and — when linked — the SKU.io sales order with its fulfillments. sku_sales_order_updated_at carries that linked order's last create/update timestamp (the "Last SKU Sync" column on the orders list), or null when the Magento order isn't mapped yet.
Embedded sku_sales_order.fulfillments[] drives the Fulfillments accordion panel on the order detail page. Each fulfillment carries: id, status, fulfillment_type, tracking_number, cost, fulfilled_at, submitted_to_sales_channel_at, the warehouse (id + name), the shipping_method (id + name), and the per-line line_items[] array. When the linked SKU sales order has no fulfillments the array is empty.
Activity log + raw payload are NOT included here — they are lazy-loaded by the detail page from /orders/:id/activity-log and /orders/:id/raw respectively. Pass include_raw=1 if you need raw_payload inline.
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
Response Headers
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.