Online Booking
Get Team Members Available for Booking
Each object from the array of team members available for booking has the following fields:
| Field | Type | Description |
|---|---|---|
| id | number | team member ID |
| name | string | team member name |
| specialization | string | team member specialization |
| position | object | team member position |
| bookable | boolean | Does the team member have sessions available for booking |
| weight | number | team member weight. When withdrawing, team members are sorted by weight, heavier first |
| show_rating | number | Whether to show team member's rating (1 - show, 0 - don't show) |
| rating | number | team member rating |
| votes_count | number | Number of votes rated team member |
| comments_count | number | Number of comments to a team member |
| avatar | string | Path to team member avatar file |
| information | string | Additional information about the team member (HTML format) |
| session_date | string | Date of the next day that there are available sessions (only for bookable = true) |
The following filters are available:
- service_ids: Array of service IDs. If you need team members who provide only the selected service
- datetime: date (in iso8601 format). If you need team members who have sessions for the specified service at the specified time
get/book_staff/{location_id}
Path parameters
location_idnumber required
location ID
Query parameters
service_ids[]number[]
Service ID. Filter by the list of service identifiers
datetimenumber
date in iso8601 format. Filter by service booking date (for example '2005-09-09T18:30')
Headers
Acceptstring required
e.g. application/vnd.api.v2+json
Content-Typestring required
application/json
Authorizationstring required
Bearer partner_token
Response
OK
Example response
{
"success": true,
"data": [
{
"id": 16,
"name": "James",
"bookable": true,
"specialization": "Paramedic",
"position": {
"id": 1,
"title": "Administrator"
},
"show_rating": 1,
"rating": 3,
"votes_count": 1,
"avatar": "https://app.alteg.io/images/no-master.png",
"comments_count": 0,
"weight": 11,
"information": "<span></span>",
"seance_date": "2026-09-21",
"seances": []
},
{
"id": 32,
"name": "Peter",
"bookable": false,
"specialization": "Therapist",
"position": {},
"show_rating": 1,
"rating": 4,
"votes_count": 1,
"avatar": "https://app.alteg.io/images/no-master.png",
"comments_count": 0,
"weight": 8,
"information": "<span></span>"
}
],
"meta": []
}