- Get Team Members Available for Booking
Get Booking Form Configuration
Get Internationalization Options
Get Services Available for Booking
Get Nearest Available Time Slots for Team Member
Get Dates Available for Booking
Get a List of Time Slots Available for Booking
Validate Booking Parameters
Create an Online Booking
Get Online Booking Details
Change Online Booking Date/Time
Book Event
Get location privacy policy for online booking
Get Team Members Availabl...
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
Security
BearerPartner
- Mock serverhttps://developer.alteg.io/_mock/en/public/openapi/book_staff/{location_id}
- Production serverhttps://api.alteg.io/api/v1/book_staff/{location_id}
curl -i -X GET \
'https://developer.alteg.io/_mock/en/public/openapi/book_staff/4564?service_ids%5B%5D=0&datetime=0' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>' \
-H 'Content-Type: string'OK
Array of objects with data
Example:
[ { "id": 16, "name": "James", "bookable": true, "specialization": "Paramedic", "position": { … }, "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>" } ]
Response
{ "success": true, "data": [ { … }, { … } ], "meta": [] }