User authentication and session management for B2B integrations
- Get team member schedules
Get schedule of a specific team member
Change schedule of a specific team member
Get a list of dates for Appointment Calendar
Get a list of sessions for the 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
Set team member schedules
Update team member schedule (deprecated)
Get team member schedules
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/
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/settings/timetable
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/settings/timetable
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/settings/timetable' \
-H 'Accept: string' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"record_type": 0,
"activity_record_clients_count_max": 1
}'Response
application/json
{ "success": true, "data": { "record_type": 90, "activity_record_clients_count_max": 1 }, "meta": [] }
Request
Retrieves work schedules for team members as working intervals.
Optionally includes:
- Busy intervals (appointments and events)
- Off-day type identifiers
Query Parameters:
start_date/end_date- Date range for schedule searchstaff_ids[]- Filter by specific team membersinclude[]- Include additional data (busy_intervals, off_day_type)
Security
BearerPartnerUser
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/staff/schedule
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/staff/schedule
- 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/company/720441/staff/schedule?start_date=2026-01-31&end_date=2026-03-31&staff_ids=0&include=busy_intervals' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json'Response
application/json
{ "success": true, "data": [ { … } ], "meta": { "count": 1 } }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/staff/schedule
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/staff/schedule
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/720441/staff/schedule \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"schedules_to_set": [
{
"team_member_id": 12345,
"dates": [
"2026-01-31",
"2026-02-01"
],
"slots": [
{
"from": "10:00",
"to": "14:00"
},
{
"from": "15:00",
"to": "19:00"
}
]
}
],
"schedules_to_delete": [
{
"team_member_id": 12345,
"dates": [
"2026-02-02"
]
}
]
}'Response
application/json
{ "success": true, "data": [ { … } ], "meta": { "count": 2 } }