v1
latestOpenAPI 3.0.12026-07-24501176.6 MBGet Store Tasks
Returns the details of store tasks such as task title, description, status, and updates.
Query parameters
Type of staff details to return.
Type of task to return.
Unique ID of the associate to return the list of tasks assigned to that specific associate.
Unique ID of the customer to get the list of tasks created for that specific customer.
Returns the list of tasks created between the dates set on start_date and end_date. If only start_date is mentioned then the list of tasks created on or after that specified date is returned.
Returns the list of tasks created between the dates set on start_date and end_date. If only end_date is passed, the list of tasks created on or before the specified date is returned.
Limits the number of tasks to be returned. For example, if count=10 then the details of only 10 tasks are returned.
Format of the response object.
Response
200
Example response
{
"response": {
"status": {
"success": "true",
"code": "200",
"message": "SUCCESS"
},
"store": {
"tasks": {
"task": [
{
"type": "CUSTOMER/CASHIER",
"associate_id": "123",
"customer_id": "124",
"store_id": "125",
"status": "OPEN"
}
]
}
}
}
}