v1

latestOpenAPI 3.1.1Altegio API Agreement2026-08-062438211.0 KB
Online Booking

Get Team Members Available for Booking

Each object from the array of team members available for booking has the following fields:

FieldTypeDescription
idnumberteam member ID
namestringteam member name
specializationstringteam member specialization
positionobjectteam member position
bookablebooleanDoes the team member have sessions available for booking
weightnumberteam member weight. When withdrawing, team members are sorted by weight, heavier first
show_ratingnumberWhether to show team member's rating (1 - show, 0 - don't show)
ratingnumberteam member rating
votes_countnumberNumber of votes rated team member
comments_countnumberNumber of comments to a team member
avatarstringPath to team member avatar file
informationstringAdditional information about the team member (HTML format)
session_datestringDate 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

successboolean

Execution success status (true)

metaobject[]

Metadata (empty array)

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": []
}