inventory/item/delete
POST
/inventory/item/deleteThis deletes an item in 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 item ID to delete. Choose to delete only by item_id, model, SKU or barcode.
The model of the item to delete. Choose to delete only by item_id, model, SKU or barcode.
The SKU of the item to delete. Choose to delete only by item_id, model, SKU or barcode.
The barcode of the item to delete. Choose to delete only by item_id, model, SKU or barcode.
An array of item ID to delete. If defined, this will take priority over item_id, model, sku and barcode parameter. Max 500 item IDs.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"item_id": 0,
"model": "string",
"sku": "string",
"barcode": "string",
"batch_id": {}
}
Responses
Returns only if there is an error.
Returns only if there is no error.
The item ID deleted if there is no error.
The item IDs deleted if using batch_id parameter for deletion.
{
"error": [
"string"
],
"success": true,
"item_id": 0,
"item_ids": {}
}