Checklists
Retrieve all checklists by location ID.
Request
The ID of the location to retrieve checklists.
Optional date to filter checklists (YYYY-MM-DD).
Request samples
curl --location --request GET '/checklists?location_id'
Responses
application/json
List of checklists retrieved successfully
[
{
"checklist_id": "string",
"location_id": "string",
"name": "string",
"tasks": [
{
"task_id": "string",
"name": "string",
"completed": true
}
]
}
]
Modified at 2024-12-17 09:53:01