inventory/item/add
POST
/inventory/item/addThis adds an item to the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
The name of the item.
The item model code.
The description of the item. HTML supported.
The plain text description of the item.
The channel group ID for restriction control. Accepts 0 if none.
The item SKU code.
The item GTIN code.
The item barcode.
The weight of the item in KG.
The length of the item in cm.
The width of the item in cm.
The height of the item in cm.
The parent item ID. Use 0 if it is a parent itself.
The brand ID for the item. Accepts 0.
The image URL or file path to the image stored on Equotix One. Leave empty if none.
The price of the item.
The cost of the item. Only if API has view cost permission.
The total added quantity for the item as at now. Accepts 0.
The total deducted quantity for the item as at now. Accepts 0.
The average cost of the item. Only if API has view cost permission.
The pool cost of the item. Only if API has view cost permission.
The images for the item.
The image URL or file path to the image stored on Equotix One.
The image set number. Accepts 0 to 9 only.
The location quantity and price for the item.
The location ID.
The quantity available in this location. Quantity will not be set if inventory integrity is enabled.
The price of the item for the location.
The warning quantity level for this item at the location.
The danger quantity level for this item at the location.
The rack location the item is stored at.
The customer group pricing for the item.
The customer group ID.
The price of the item for this customer group.
The category IDs to be used for the item.
Set whether this item is a bundle item. 1 to enable bundle, 0 to disable.
Required if bundle is enabled. Contains the actual items and quantities in the bundle.
The item to bundle.
The quantity of the item bundled.
The translations for the item.
The language ID.
The translated item name.
The translated item description. HTML supported.
The translated plain text description of the item.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"name": "string",
"model": "string",
"description": "string",
"plain_description": "string",
"channel_group_id": 0,
"sku": "string",
"gtin": "string",
"barcode": "string",
"weight": 0,
"length": 0,
"width": 0,
"height": 0,
"parent_id": 0,
"brand_id": 0,
"image": "string",
"price": 0,
"cost": 0,
"total_added": 0,
"total_deducted": 0,
"average_cost": 0,
"pool_cost": 0,
"images": [
{
"image": "string",
"set_id": 0
}
],
"locations": [
{
"location_id": 0,
"quantity": 0,
"price": 0,
"stock_warning": 0,
"stock_danger": 0,
"location": "string"
}
],
"customer_groups": [
{
"customer_group_id": 0,
"price": 0
}
],
"categories": [
0
],
"bundle": 0,
"item_bundles": [
{
"bundle_item_id": 0,
"quantity": 0
}
],
"translations": [
{
"language_id": 0,
"name": "string",
"description": "string",
"plain_description": "string"
}
]
}
Responses
Returns only if there is an error.
Returns only if there is no error.
The created item ID.
{
"error": [
"string"
],
"success": true,
"item_id": 0
}