Get inventory summaries
Learn how to use the AWD Inventory API to return the inventory summaries.
Learn how to use the AWD Inventory API to return the inventory summaries.
Prerequisites
To complete this tutorial, you need:
- Authorization from the selling partner for whom you are making calls. For more information, refer to Authorizing Selling Partner API Applications.
- The Amazon Warehousing and Distribution role assigned to your developer profile.
- The Amazon Warehousing and Distribution role selected in the app registration page for your application.
Return the inventory summaries using listInventory
listInventory
Call the listInventory
operation to return the inventory summaries. You can:
- Get all available inventory summaries with detail
- Get inventory summaries for the seller specified SKUs
Error codes and resolutions
Error code | Resolution guidance | Resolution example |
---|---|---|
EXPECTED_NON_NULL_LABEL_OWNER | Add labelOwner as AMAZON/SELF | prepDetails: {"prepCategory": "PERFORATED", "prepOwner": "AMAZON", "labelOwner": "SELF"} |
EXPECTED_NON_NULL_PREP_OWNER | Add prepOwner as AMAZON/SELF | prepDetails: {"prepCategory": "PERFORATED", "prepOwner": "AMAZON", "labelOwner": "SELF"} |
EXPECTED_SAME_PREP_LABEL_OWNERS | Add prepOwner and labelOwner with the same values | prepDetails: {"prepCategory": "PERFORATED", "prepOwner": "AMAZON", "labelOwner": "AMAZON"} |
EXPECTED_SELF_PREP_OWNER | Add prepOwner as SELF | prepDetails: {"prepCategory": "PERFORATED", "prepOwner": "SELF", "labelOwner": "AMAZON"} |
EXPECTED_AMAZON_PREP_OWNER | Add prepOwner as AMAZON | prepDetails: {"prepCategory": "PERFORATED", "prepOwner": "AMAZON", "labelOwner": "SELF"} |
EXPECTED_SELF_LABEL_OWNER | Add labelOwner as SELF | prepDetails: {"prepCategory": "PERFORATED", "prepOwner": "AMAZON", "labelOwner": "SELF"} |
EXPECTED_AMAZON_LABEL_OWNER | Add labelOwner as AMAZON | prepDetails: {"prepCategory": "PERFORATED", "prepOwner": "SELF", "labelOwner": "AMAZON"} |
EXPECTED_NULL_LABEL_OWNER | Exclude labelOwner | prepDetails: {"prepCategory": "PERFORATED", "prepOwner": "AMAZON"} |
EXPECTED_NULL_PREP_OWNER | Exclude prepOwner | prepDetails: {"prepCategory": "PERFORATED", "labelOwner": "AMAZON"} |
Updated 1 day ago