inventory/flow/get
POST
/inventory/flow/getThis returns the list of item stock flow 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 stock flow to search for specifically.
Filter the list by location ID.
Filter the list by records added after the specified date time.
Filter 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
Returns only if there is an error.
The total number of results available.
The list of item flows available.
The item flow ID.
The user ID that created this item flow.
The item name.
The item model code.
The item SKU code.
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 location name.
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"
}
]
}