List Plan Allocations
GET/api/amazon/:integrationInstance/draft-inbound-plans/:draft_inbound_plan/allocations
List the inventory allocations reserved against a draft inbound plan's line items. These are the source-stock reservations (InventoryAllocation rows linked to DraftAmazonFbaInboundPlanItem) created when the plan is verified, and — after Amazon splits the plan into shipments — their migrated/fulfilled states. Backs the plan detail page's "Allocations" tab.
Authentication: requires Bearer token.
Filters: filter[search] (allocation id / product SKU / product name), filter[status] (exact: allocated, planned, awaiting_receipt, fulfilled, cancelled), filter[warehouse_id] (exact).
Sort: sort — allowed: id, quantity, status, created_at (prefix with - for DESC; default -id).
Pagination: page, per_page (default 10).
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
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.