inventory/addition/add
POST
/inventory/addition/addThis adds an item addition 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 purchase order ID this item addition should associate to. Accepts 0.
The currency code for this item addition.
The currency value for this item addition. Accepts 0 for auto value.
The comment for this item addition.
The list of items for the item addition.
The item name.
The item ID.
The location ID to add quantity to.
The quantity to add.
The item cost. Required if user account has permission to view item cost.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"purchase_order_id": 0,
"currency": "string",
"currency_value": 0,
"comment": "string",
"addition": [
{
"name": "string",
"item_id": 0,
"location_id": 0,
"quantity": 0,
"cost": 0
}
]
}
Responses
Returns only if there is an error.
Returns only if there is no error.
The created item addition ID.
{
"error": [
"string"
],
"success": true,
"item_addition_id": 0
}