Get Shipment Packing List
GET/api/amazon/:integrationInstance/draft-inbound-plans/:draftInboundPlan/shipments/:planShipment/packing-list
Get the packing list for one shipment of an FBA inbound plan.
This endpoint currently requires session authentication; Personal Access Token scope support is in progress.
Returns a header block identifying the shipment (workflow name, shipment ID and name, destination city/state, and box / SKU / unit totals) followed by one row per SKU. Each row carries the item's identifiers (title, ASIN, FNSKU), its condition and prep type, its total units on the shipment, and a units_by_box_number map breaking those units out per box.
box_numbers lists every box on the shipment in ascending order — use it as the column order when rendering the SKU-by-box matrix. Box numbers are the numbers printed on the box labels, so the sheet reconciles directly against the physical cartons.
Boxes must be packed and assigned to the shipment before the list has content; an unpacked shipment returns zero boxes, zero SKUs and an empty lines array.
Authentication: requires a Bearer token.
boxes closes the list with one entry per box, in the same order as box_numbers: amazon_box_id, box_name, weight/weight_unit and length/width/height/dimension_unit. This mirrors the trailing block Amazon prints beneath its own SKU matrix, so the two exports reconcile line for line. Omitted when the shipment has no boxes.
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.