Download OpenAPI specification:Download
With the FBA Inbound Eligibility API, you can build applications that let sellers get eligibility previews for items before shipping them to Amazon's fulfillment centers. With this API you can find out if an item is eligible for inbound shipment to Amazon's fulfillment centers in a specific marketplace. You can also find out if an item is eligible for using the manufacturer barcode for FBA inventory tracking. Sellers can use this information to inform their decisions about which items to ship Amazon's fulfillment centers.
This operation gets an eligibility preview for an item that you specify. You can specify the type of eligibility preview that you want (INBOUND or COMMINGLING). For INBOUND previews, you can specify the marketplace in which you want to determine the item's eligibility.
Usage Plan:
Rate (requests per second) | Burst |
---|---|
1 | 1 |
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
marketplaceIds | Array of strings <= 1 items The identifier for the marketplace in which you want to determine eligibility. Required only when program=INBOUND. |
asin required | string The ASIN of the item for which you want an eligibility preview. |
program required | string Enum: "INBOUND" "COMMINGLING" The program that you want to check eligibility against. |
{- "payload": {
- "asin": "string",
- "marketplaceId": "string",
- "program": "INBOUND",
- "isEligibleForProgram": true,
- "ineligibilityReasonList": [
- "FBA_INB_0004"
]
}, - "errors": [
- {
- "code": "string",
- "message": "string",
- "details": "string"
}
]
}