User authentication and session management for B2B integrations
- Get a list of sessions for the Appointment Calendar
Get schedule of a specific team member
Change schedule of a specific team member
Get a list of dates for Appointment Calendar
Getting Resources at a Location
Search a Schedule by Event
Create a Schedule
Update a Schedule
Delete a Schedule
Create a Schedule Series
Update a schedule series
Delete a schedule series
Get a List of Scheduled Appointments and Events
Retrieving Appointment Calendar Settings
Update Appointment Calendar settings
Get team member schedules
Set team member schedules
Update team member schedule (deprecated)
Get a list of sessions fo...
Business Management (1.0.0)
Full-featured B2B API for business operations.
Base URL: https://api.alteg.io/api
V1 will be gradually deprecated. We recommend using V2 API for new integrations. V1 endpoints are maintained for backward compatibility, but new features will be released in V2 only.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developer.alteg.io/_mock/en/b2b-v1/openapi/
Production
https://api.alteg.io/api/v1/
Request
The Appointment Calendar dates are returned as an array of date strings, for example: ["2026-10-26", "2026-10-30"]. To retrieve this list, you must provide a reference date. The response will return the available working dates of the specified location or team member relative to that date
Security
BearerPartnerUser
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/timetable/dates/{location_id}/{date}
- Productionhttps://api.alteg.io/api/v1/timetable/dates/{location_id}/{date}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/timetable/dates/{location_id}/{date}?staff_id=0' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: string'Response
application/json
{ "success": true, "data": [ "2026-09-21T23:00:00.000-05:00", "2026-09-21T23:00:00.000-05:00", "2026-09-21T23:00:00.000-05:00", "2026-09-21T23:00:00.000-05:00", "2026-09-21T23:00:00.000-05:00", "2026-09-21T23:00:00.000-05:00", "2026-09-21T23:00:00.000-05:00" ], "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/timetable/seances/{location_id}/{team_member_id}/{date}
- Productionhttps://api.alteg.io/api/v1/timetable/seances/{location_id}/{team_member_id}/{date}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/timetable/seances/{location_id}/{team_member_id}/{date}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: string'Response
application/json
{ "success": true, "data": [ { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … } ], "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/resources/{location_id}
- Productionhttps://api.alteg.io/api/v1/resources/{location_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/resources/{location_id}?Accept=string&Content-Type=string&Authorization=string' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>'OK
Array with data objects
Example: [{"id":70,"title":"Pedicure chair","instances":[{"id":181,"title":"Pedicure chair #1","resource_id":70}]},{"id":464,"title":"massage room","instances":[{"id":1094,"title":"Massage room 1st floor","resource_id":464},{"id":1162,"title":"Massage room 2nd floor","resource_id":464}]}]
Response
application/json
{ "success": true, "data": [ { … }, { … } ], "meta": { "count": 2 } }