Update Cost for an Item

Drop ship vendors (DSVs) can update the 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.

Call DSV Cost API

Use the Cost API to update the item cost. For more on POST Cost (POST /v3/feeds), refer to the POST Cost request.

  1. Call POST /v3/feeds.
  2. Set the required feed type parameter (feedType) to "cost" (to indicate the type of feed content will be item cost). For example: POST /v3/feeds?feedType=cost
    Refer to the POST Cost request for more details, such as request parameters, sample responses, and JSON schema field descriptions.

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" } } ]
}