Skip to content
On this page

Update Inventory

How to update inventory.

curl -X PUT https://sync.wrkoutstore.com/api/v1/inventory \
  -H "username: YOUR_USERNAME" \
  -H "password: YOUR_PASSWORD" \
  -H "Content-Type: application/json" \

Required headers:

  • username
  • password

Sample payload:

[
  {
    "sku": "40081865965671",
    "quantityAvailable": 6
  }
]

Sample response:

{
	"statusCode": 200,
	"body": {
		"products": [
			{
				"sku": "1027-40616547811413",
				"vendorEdiSku": "40616547811413",
				"itemName": "Garden of Life Vitamin Code Raw Zinc (420 Capsules) ++",
				"brandName": "Garden of Life",
				"modelName": "",
				"shortDescription": "Short description",
				"itemCost": 18.95,
				"tags": "",
				"quantityAvailable": 1,
				"image1": "p_1027_GL00420_1.",
				"infiniteQuantity": 0,
				"ukTaxRate": 0
			}
		],
		"errors": []
	}
}