inventory/addition/get
POST
/inventory/addition/getThis returns the list of item additions available 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 addition ID to search for.
Filter the list of item additions modified after the spcified date.
Filter the list of item additions to include deleted records.
Page number of the results.
The key for the ordering of the results. Accepts "item_addition_id", "date_added", "date_modified"
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"item_addition_id": 0,
"filter_date_modified": "string",
"filter_deleted": true,
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
Returns only if there is an error.
The total number of results available if there is no error.
The list of item additions available if there is no error.
The item addition ID.
The user ID last modified the stock addition.
The purchase order ID this item addition is associated to.
The comment for this item addition.
The currency code for this item addition.
The currency value for this item addition.
The date time this item addition was created.
The date time this item addition was last modified.
The list of items for the item addition.
Indicates if the item addition has been deleted. Only returned if filter_deleted is "1".
{
"error": [
"string"
],
"total": 0,
"additions": [
{
"item_addition_id": 0,
"user_id": 0,
"purchase_order_id": 0,
"comment": "string",
"currency": "string",
"currency_value": 0,
"date_added": "string",
"date_modified": "string",
"items": [
{
"item_id": 0,
"name": "string",
"location_id": 0,
"quantity": 0,
"cost": 0
}
],
"deleted": true
}
]
}