How to just update cost field - why does it want to update inventory as well? #61
|
I want to bulk update all teh cost fields in our sellbrite (6000+ skus) but it seems to require inventory as well? I dont want to mess with the inventory and the potential for mistakes there - is there really not a way to just update cost alone? |
Replies: 1 comment 3 replies
|
Hello, thank you for reaching out! You're correct that the endpoint expects both At this time, there isn't a dedicated endpoint for updating the cost field by itself. To update the cost values of your inventory, you'll first need to retrieve your inventory from the If you are facing issues pulling this information from the |
Hello, thank you for reaching out!
You're correct that the endpoint expects both
on_handandavailableinventory values when making aPUTcall to update inventory.At this time, there isn't a dedicated endpoint for updating the cost field by itself. To update the cost values of your inventory, you'll first need to retrieve your inventory from the
GETendpoint: https://developer.sellbrite.com/endpoints/inventory. You can then pass the currenton_handandavailablequantities unchanged in the required fields of thePUTendpoint: https://developer.sellbrite.com/endpoints/inventory-put, along with the desired cost values. This will ensure that you're not unintentionally altering inventory lev…