inventory/stock_take_job/get
POST
/inventory/stock_take_job/getThis returns the list of stock take jobs 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 stock take job ID to search for specifically.
Filter the list of item stock take jobs modified after the spcified date.
Page number of the results.
The key for the ordering of the results. Accepts "item_stock_take_job_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_stock_take_job_id": 0,
"filter_date_modified": "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 stock take jobs available.
The stock take job ID.
The user ID last modified the stock take job.
The location ID.
The job status ID for the stock take job.
The comment for the stock take job.
The date time the stock take job was created.
The date time the stock take job was last modified.
The list of items for the stock take job.
{
"error": "string",
"total": 0,
"stock_take_jobs": [
{
"stock_take_job_id": 0,
"user_id": 0,
"location_id": 0,
"job_status_id": 0,
"comment": "string",
"date_added": "string",
"date_modified": "string",
"items": [
{
"item_id": 0,
"name": "string",
"difference": 0
}
]
}
]
}