PractitionerRotas
List all practitioner rotas
Returns a paginated list of every PractitionerRota the caller is authorised to see, across all practitioners. Useful for schedule management UIs that need to show a unified rota view. Use the nested /shop/practitioners/{practitionerId}/rotas endpoint when you already know the practitioner and want to avoid the extra filtering.
get/shop/practitioner-rotas
Query parameters
pageinteger
The page to retrieve results from
per_pageinteger
The number of results to return per page
Response
A paginated list of PractitionerRota objects across all practitioners the caller can see.
Example response
{
"data": [
{
"scheduling_week_interval": 2,
"availability_rules": [
{
"week_num": 1,
"weekday": "monday",
"time_from": "09:00",
"time_to": "17:00",
"offerings": [
{
"offering_name": "Twilight massage",
"offering_type": "appointment"
}
]
}
]
}
],
"meta": {
"from": 1,
"to": 2,
"total": 2,
"current_page": 1,
"last_page": 2,
"per_page": 15,
"path": "http://example.com/api"
},
"links": {
"first": "http://example.com?page=1",
"next": "https://example.com?page=3",
"prev": "https://example.com?page=1",
"last": "https://example.com?page=4"
}
}