This returns the list of item stock flow in 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 ID stock flow to search for specifically.
filter_location_id
integerÂ
optionalFilter the list by location ID.
filter_date_added_start
stringÂ
optionalFilter the list by records added after the specified date time.
filter_date_added_end
stringÂ
optionalFilter the list by records added before the specified date time.
Page number of the results.
The key for the ordering of the results. Accepts "item_flow_id", "date_added"
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",
"filter_item_id": 0,
"filter_location_id": 0,
"filter_date_added_start": "string",
"filter_date_added_end": "string",
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
application/json Returns only if there is an error.
The total number of results available.
flows
array [object {16}]Â
optionalThe list of item flows available.
The user ID that created this item flow.
The current cost of the item. Only available if API has view cost permission.
The current average cost of the item. Only available if API has view cost permission.
The current pool cost of the item. Only available if API has view cost permission.
The user ID that created this stock flow.
The username of the user.
The location ID the stock flow was created at.
The quantity added or subtracted.
The balance quantity as at point.
The comment for the stock flow.
The date time the stock flow was created.
{
"error": [
"string"
],
"total": 0,
"flows": [
{
"item_flow_id": 0,
"item_id": 0,
"name": "string",
"model": "string",
"sku": "string",
"cost": 0,
"average_cost": 0,
"pool_cost": 0,
"user_id": 0,
"user": "string",
"location_id": 0,
"location": "string",
"quantity": 0,
"balance": 0,
"comment": "string",
"date_added": "string"
}
]
}
Modified at 2024-10-18 16:58:08