This edits an item addition on the Equotix One account.
Request
Body Params application/json
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 item addition ID to edit.
purchase_order_id
integerÂ
requiredThe 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.
addition
array [object {5}]Â
requiredThe list of items for the item addition.
The location ID to add quantity to.
The item cost. Required if user account has permission to view item cost.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"item_addition_id": 0,
"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
application/json Returns only if there is an error.
Returns only if there is no error.
The edited stock addition ID.
{
"error": [
"string"
],
"success": true,
"item_addition_id": 0
}
Modified at 2024-10-20 04:29:54