Show New Inbound Shipment
GET/api/amazon/:integrationInstance/new-inbound/shipments/:shipment
Get a specific new FBA inbound shipment with full detail.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Eager loads: amazonFbaInboundShipmentItems.amazonProduct, skuLink, receipts, integrationInstance, shipFromMapping.link, pendingInbound.
Response includes:
- Identifiers: shipmentId, shipmentConfirmationId, amazonReferenceId, name, sourceName
- Status fields: status, pending_status, errorLog, is_before_initial_count, is_archived, archived_at
- Destination: destinationCountry, destinationWarehouse, destinationType, destinationAddress, destination
- Transportation/placement IDs and cached_shipment_date
- sku_link: the user-bound source (PurchaseOrder or WarehouseTransfer) — polymorphic with id, type, name, displayType
- actual_source: resolved from sku_link (Supplier for PO, Warehouse for WT) — { name, type, link_type, link_id, route }
- ship_from_mapping: current mapping target — UI compares to actual_source to detect divergence and strike-through the current mapping when they differ
- pending_inbound: linked PendingInbound row with status/shipped_at
- receipts: linked inventory receipt/ledger entries
- items: per-line with id, msku, fnsku, quantity, item_name, item_asin, amazon_product_id, fnsku_product (with product + inventory_available when ship-from is a Warehouse)
Shelf-life compliance: the shipment includes aggregate shelf_life_warnings_count and has_shelf_life_warnings. Each item carries shelf_life_compliance (or null when the product is not lot-tracked, has no dated source lots, or ships from a non-warehouse source). The compliance object reports expiry_date, remaining_shelf_life_days, min_remaining_shelf_life_days, is_compliant, will_be_auto_disposed (within Amazon's 50-day auto-disposal window), and disposal_window_days.
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.