Skip to main content
POST
/
v1
/
product_store
/
bulk
Bulk Upsert Product Store
curl --request POST \
  --url https://api.example.com/v1/product_store/bulk \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    {
      "store_name": "<string>",
      "country_code": "<string>",
      "regular_price": 123,
      "unit_cost": 123,
      "stock_on_hand": 123,
      "status": "<string>",
      "tax_rate": 123,
      "currency": "<string>",
      "price_effective_date": "2023-12-25",
      "item_id": "<string>",
      "sku": "<string>",
      "store_id": "<string>",
      "current_price": 123
    }
  ]
}
'
{
  "results": [
    {
      "index": 123,
      "ok": true,
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Body

application/json
items
ProductStoreBulkItem · object[]

Response

Successful Response

results
(BulkItemSuccess · object | BulkItemError · object)[]