Update wholesale price, Purchase Price and retailer price on shiphero

How to update wholesale price, Purchase price and retailer price on shiphero? Please give query if you can, ASAP

Hi @abubakar!
You can use the warehouse_product_update mutation for that. Something like this:

mutation {
  warehouse_product_update(
    data: { sku: "123456", price: "2.00", value: "1.00" }
  ) {
    request_id
    complexity
  }
}

For the whole fields available on that mutation you can also find them on the docs: Getting Started – Developer Resources | ShipHero

Please let us know if that doesn’t help.
Thanks in advance!