User authentication and session management for B2B integrations
- Get service category
Create a service category
Get a list of services
Create a service
Update a service
Update a service (partial)
Delete a service
Change service category
Delete service category
Get a list of service categories
Get a list of services / specific service
Linking a Team Member to a Provided Service
Updating Team Member Service Link Settings
Deleting a Team Member Service Link
Update service links
Get a list of chain service categories
Deprecated. Get a list of service categories
Deprecated. Get a list of services / specific service
Get service category
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/services/{location_id}/{service_id}
- Productionhttps://api.alteg.io/api/v1/services/{location_id}/{service_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/services/{location_id}/{service_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: string'- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/service_category/{location_id}/{id}
- Productionhttps://api.alteg.io/api/v1/service_category/{location_id}/{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/service_category/{location_id}/{id}' \
-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": { "id": 3, "salon_service_id": 15, "title": "Haircuts for women", "weight": 12, "staff": [ … ] }, "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/service_category/{location_id}/{id}
- Productionhttps://api.alteg.io/api/v1/service_category/{location_id}/{id}
- 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/service_category/{location_id}/{id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "Haircut very feminine",
"api_id": "adw322",
"weight": 111,
"staff": [
5006,
8901
]
}'Response
application/json
{ "success": true, "data": { "id": 3, "salon_service_id": 15, "title": "Haircuts for women", "weight": 15, "staff": [ … ] }, "meta": [] }