Get Package
GET/api/shipfusion/integration-instances/:integration_instance/packages/:package
Fetch a single Shipfusion package by its local id, scoped to the integration instance (returns 404 if the package belongs to a different instance). The full provider json_object for the package is always included on this detail endpoint (the endpoint forces include_json=1).
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Also includes shipment_items — the normalized line items for this package's shipment. ShipFusion tracks items at the shipment (order) level rather than per physical package, so each item is resolved from the parent order's json_object.shipmentItems first, falling back to the package's own embedded items. Each item carries sku, product_id, quantity, status, and lot_number. shipment_items is only present when include_json is set; the index (List Packages) endpoint does not return it.
Includes SKU.io linkage — the package's own SalesOrderFulfillment plus the parent order's legacy order→SOF link as a transition fallback — and a cross-link payload pointing back at the parent Shipfusion order.
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.