Retrieve a scheduler (scheduler config) and its weekly template (days, hours, slot quantity, and the practitioner / appointment-type IDs bound to each day).
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/scheduler/{schedulerConfigId}
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/scheduler/{schedulerConfigId}
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/scheduler/1312' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Scheduler retrieved successfully
Weekly template (recurring availability), ordered Monday-first. Always returned by the single-scheduler GET; in list responses only when includeTemplates=true, and null otherwise. A scheduler with no template returns an empty array, so null means "not requested" rather than "none configured".
Response
{ "active": true, "id": 1312, "locationId": 1312, "name": "Plano Lab Review / Med Reorder", "templates": [ { … } ] }