User authentication and session management for B2B integrations
- Create Recurring Appointments
Get list of appointments
Create a New Appointment
Get an Appointment
Edit Appointment
Delete Appointment
Get a List of Partner Appointments
Get a visit
Get Visit Details
Edit Visit
Receipt PDF for the visit
Get comments
Leave a Comment
Update Recurring Appointments
Delete Recurring Appointments
Create Recurring Appointm...
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/comments/{location_id}/{team_member_id}
- Productionhttps://api.alteg.io/api/v1/comments/{location_id}/{team_member_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/comments/{location_id}/{team_member_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"mark": 4,
"text": "Everything is very bad!",
"name": "Victor"
}'Response
application/json
{ "success": true, "data": { "type": 1, "master_id": 8864, "id": 18437, "text": "Everything is very bad!", "date": "2026-09-21T23:00:00.000-05:00", "rating": 4, "user_id": 157169, "user_name": "Victor", "user_avatar": "/images/no-master.png" }, "meta": [] }
Bodyapplication/json
IDs of schedule series, min of 1 series, max of 7 series.
Example: [123]
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/schedules/{schedule_id}/client_schedules
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/schedules/{schedule_id}/client_schedules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/123/schedules/123/client_schedules \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"client_id": 123,
"comer_id": 123,
"schedule_days_ids": [
123
]
}'Response
application/json
{ "success": true, "data": { "id": 123, "loyalty_abonement_id": null, "final_day": "2022-01-01 12:12:12", "days": [ … ] }, "meta": {} }
Bodyapplication/json
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/schedules/{schedule_id}/client_schedules/{client_schedule_id}
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/schedules/{schedule_id}/client_schedules/{client_schedule_id}
- 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/123/schedules/123/client_schedules/123 \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"schedule_days_ids": [
123
]
}'Response
application/json
{ "success": true, "data": { "id": 123, "loyalty_abonement_id": null, "final_day": "2022-01-01 12:12:12", "days": [ … ] }, "meta": {} }