Download Shipment Packing List CSV
GET/api/amazon/:integrationInstance/draft-inbound-plans/:draftInboundPlan/shipments/:planShipment/packing-list.csv
Download the same packing list as a CSV file.
This endpoint currently requires session authentication; Personal Access Token scope support is in progress.
The column layout matches the packing list Amazon Seller Central exports — a header block (Workflow name, Shipment ID, Shipment name, Ship to, Boxes, SKUs, Units), a blank line, an "Individual units (N boxes)" caption, then the SKU rows with one Box N units column per box.
Response is a text/csv file download named packing-list-{shipmentId}.csv, not JSON.
Authentication: requires a Bearer token.
The file closes with Amazon's own trailing box block — six empty cells, the label in the "Total units" column, then one value per box column: Box ID, Box name, Box weight (lb):, Box length (inch):, Box width (inch):, Box height (inch):. Skipped entirely 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 — 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.