Retrieve tasks for the location with keyset pagination. Filter by status, type, assignee, related patient, due-date range, creation-date range, and system vs manual. Sorted by creation date.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/task
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/location/{locationId}/task
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/task?status=OPEN&type=OTHER&assigneeStaffId=0&patientId=0&dueDateFrom=2025-01-01&dueDateTo=2025-12-31&createdOnFrom=2025-01-15T14%3A00%3A00Z&createdOnTo=2025-01-15T14%3A00%3A00Z&system=true&sortDir=ASC&cursor=string&limit=20' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
{ "nextCursor": "string", "tasks": [ { … } ] }