Team member and position management.
- Update Position (v2)
List Positions (v2)
Create Position (v2)
Get Position (v2)
Delete Position (v2)
Update Position (v2)
Business Management (2.0.0)
Next-generation B2B API with improved design and consistency.
Base URL: https://api.alteg.io/api
V2 is in active development. This API version is being actively developed and expanded. New features and improvements are released here first. We recommend using V2 for all new integrations.
Requires both partner and user authorization:
Authorization: Bearer <partner_token>, User <user_token>Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developer.alteg.io/_mock/en/b2b-v2/openapi/
Production
https://api.alteg.io/api/v2/
Request
Retrieve details of a specific position by ID.
Response uses JSON:API format where type: "position" is the resource type.
Security
BearerPartnerUser
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v2/openapi/companies/{company_id}/positions/{position_id}
- Productionhttps://api.alteg.io/api/v2/companies/{company_id}/positions/{position_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v2/openapi/companies/{company_id}/positions/{position_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>'Response
application/json
{ "data": { "type": "position", "id": "42", "attributes": { … } }, "meta": {} }
Bodyapplication/jsonrequired
IDs of salons where this position is available
Example: [1,2,3,4]
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v2/openapi/companies/{company_id}/positions/{position_id}
- Productionhttps://api.alteg.io/api/v2/companies/{company_id}/positions/{position_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://developer.alteg.io/_mock/en/b2b-v2/openapi/companies/{company_id}/positions/{position_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"position_id": 42,
"title": "Senior Stylist Updated",
"description": "Updated description",
"salon_ids": [
1,
2,
3,
4
]
}'- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v2/openapi/companies/{company_id}/positions/{position_id}
- Productionhttps://api.alteg.io/api/v2/companies/{company_id}/positions/{position_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://developer.alteg.io/_mock/en/b2b-v2/openapi/companies/{company_id}/positions/{position_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>'