Get shipping template associated with items
Sellers and Channel Partners can associate SKUs to Shipping Template(s). The initial configuration is set with the Bulk Item Setup (Multiple) API.
Previously, sellers could only check which Shipping Templates are associated with item SKUs by downloading an item report.
Now you can get all Shipping Templates and Fulfillment Centers that are currently associated with each item SKU. Call the POST Get Item Associations API to view current item SKU Shipping Template associations that you’ve set up with the Bulk Item Setup API. For information about how to set this up, see Add an item SKU to a Shipping Template.
Note: The Item map to Shipping Template process takes between 30 minutes to 4 hours. After this, you can call POST Get Item Associations API to retrieve all items associated with the Shipping Templates.
Note: This API is applicable for sellers who do not use the Shipping with Walmart as their fulfillment choice. |
---|
Step 1: Send request body with all SKUs
To get the shipping template and fulfillment center associated with each item SKU, provide a list of all item SKUs in the body of the request. For example, call POST /v3/items/associations
For an example request body, see Request Samples in the Get Item Associations API Reference.
Note: The maximum number of item SKUs you can pass in one request is 50.
Step 2: View Shipping Templates for each item SKU
The response returns all Shipping Templates associated with that item SKU, including the Shipping Template, and the Fulfillment center (i.e. Ship Node).
For each Shipping Template assigned to a SKU, the response provides:
- shippingTemplate
- name – Specified by seller (e.g. “2Day – MidWest region”).
- Template type – One of the type values: CUSTOM, DEFAULT or DELIVER.
- Template id – Shipping Template identifier specified by seller.
- shipNodeName – Seller-specified Fulfillment Center name (e.g. “MP_Deliver.”).
- shipNode – Walmart-specified Fulfillment Center (aka “Ship Node”) identifier.
- Enabled – depicts whether the particular shipping template is enabled.
- Status – depicts the current status of the shipping template – Active/Inactive – this is calculated based on the enabled flag, if the shipping template has “enabled = true” then its status would be ACTIVE, else INACTIVE.
Updated about 1 month ago