List Inbound Discrepancies (Tenant-Level)
GET/api/amazon/:integrationInstance/fba-inbound/discrepancies
Tenant-level FBA inbound discrepancies report — note the URL: this endpoint lives at /api/amazon/{integrationInstance}/fba-inbound/discrepancies, OUTSIDE the per-plan draft-inbound-plans/{draft_inbound_plan} group, because it aggregates across ALL of the instance's inbound plans.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Returns every SHORT/OVER shipment item across the instance's plans (unresolved only by default), ordered by claim_days_remaining ascending — the most urgent reimbursement claim windows first; shipments without a ship date sort last. PENDING/MATCH items are never included.
Query parameters:
filter[resolved](boolean, optional) —1/truealso includes resolved (acknowledged) items. Default: unresolved only
Row fields:
plan_id/plan_name— the draft inbound planshipment_id/shipment_name/shipment_confirmation_id— the shipment (e.g.FBA15K7Z9QXM)claim_deadline(date|null) —shipped_at+ 60 days (Amazon reimbursement claim window)claim_days_remaining(integer|null) — whole days until the deadline (negative once lapsed); null when the shipment has no ship dateapproaching_deadline(boolean) — true whenclaim_days_remainingis ≤ 14 (time to file a claim)item—msku,fnsku,quantity_shipped,quantity_received,discrepancy(received - shipped),discrepancy_status(SHORTorOVER),discrepancy_resolved_at,resolution_note
Authentication: Bearer token (PAT).
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.