List Label Prints
GET/api/amazon/:integrationInstance/draft-inbound-plans/:draft_inbound_plan/label-prints
List the label-print audit trail for the draft inbound plan, newest first. Every successful label generation (item labels, box labels, pallet labels, BOL fetch) records an entry; repeat prints of the same kind for the same shipment (or plan, for plan-level kinds like FNSKU) are auto-flagged is_reprint: true.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Response fields (per entry):
id(integer)label_kind(string) —FNSKU,BOX,PALLET,BOL, orCONTENT_2Dformat(string) — label format/page type as printed, e.g.STANDARD_FORMAT/Letter_30,PackageLabel_Letter_6,PackageLabel_Letter_4,PDFquantity(integer) — number of labels printeddocument_url_snapshot(string) — the (time-limited) document URL at print timeis_reprint(boolean)user(object|null) —{ id, name }of the user who printedamazon_fba_inbound_plan_shipment_id(integer|null) — the shipment, for shipment-level kinds; null for plan-level kinds (FNSKU)created_at(datetime, UTC)
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.