Inventory
Optionally SimpleStore supports the tracking of product inventory.

The following elements can be specified for management of inventory:
Attributes
Sample Object
Element | Description |
sku | Stock-keeping unit of product |
availableQuantity | How many available in stock |
minActiveQuantity | If AvailableQuantity is below this value then the Product will not longer will be available (Status = Out Of Stock) |
grossWeight | Gross weight of the product |
trackInventory | Enable tracking of inventory (true|false) |
{
"sku": "string"
"availableQuantity": number($double)
"minActiveQuantity": number($double)
"grossWeight": number($double)
"trackInventory": boolean
}
|
Last modified 3yr ago