Orders
Get Order By ID
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.
Refresh Orders
Dispatch the tracked job that refreshes Magento 2 orders. Returns the `tracked_job_log_id` so the frontend can pivot the global JobProgressTray to it. Job name prefix is `Refresh Magento 2 Orders: ` — the page's `lastCompletedJob` watcher matches on this prefix.
Pre-Start-Date Orders — Search Specific Order
Live single-order lookup against the Magento store for the pre-start-date import dialog's **Search specific order** tab. Hits Magento directly via the REST API (GET /V1/orders/{id} for `entity_id`, GET /V1/orders?searchCriteria for `email`) — local DB lookups would miss orders that have never been imported, which is the whole point of a pre-start-date back-fill.
Pre-Start-Date Orders — Import
Dispatches the tracked job that back-fills Magento 2 orders pre-dating the integration's normal sync start date. Returns `tracked_job_log_id` so the frontend can pivot the global JobProgressTray to it. Job name prefix is `Import Pre-Start-Date Magento 2 Orders: `.