Drop ship vendor (DSV) suppliers can update the cost for a single item or multiple items in bulk with the Cost API.
Drop ship vendor (DSV) suppliers can update the cost for a single item or multiple items in bulk with the Cost API.
Using the Cost API requires approval from the user’s Walmart category manager. The Cost API returns an error if used without approval.
To request Cost API approval, the drop ship vendor (DSV) must submit a request and open a support case:
Drop ship vendors (DSVs) can update cost for items in bulk with the Cost API.
The JSON schema allows users to update an array of cost objects, including item stock keeping unit (SKU), item unit cost, and ship node (`shipNode
`) to indicate the distributor identifier.
Use the Cost API to update the item cost.
POST /v3/feeds
.feedType
) to “cost” (to indicate the type of feed content will be item cost). For example: POST /v3/feeds?feedType=cost
For more details such as request parameters, sample responses, and JSON schema field descriptions, see POST Cost API.
Example: Sample Request Payload
{
"header": {
"version": "1.0"
},
"Cost": [
{
"sku": "1487132332472",
"shipNode": "82374285488579",
"unitCost": {
"amount": 9.99,
"currency": "USD"
}
},
{
"sku": "GUS25667",
"shipNode": "82374285488579",
"unitCost": {
"amount": 4,
"currency": "USD"
}
}
]
}