Retrieve the account's schedulers (scheduler configs), optionally filtered by location and active status. Use the returned id to resolve a schedule for appointment creation. Weekly templates are omitted by default; pass includeTemplates=true to return them inline instead of fetching each scheduler individually.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/scheduler
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/scheduler
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/scheduler?locationId=0&active=true&includeTemplates=false&sortBy=NAME&sortDir=ASC&cursor=string&limit=20' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
{ "nextCursor": "string", "schedulers": [ { … } ] }