Skip to content

Business Management (1.0.0)

Full-featured B2B API for business operations.

Base URL: https://api.alteg.io/api

⚠️ Version Status

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.

Authentication

Requires both partner and user authorization:

Authorization: Bearer <partner_token>, User <user_token>
Download OpenAPI description
Languages
Servers
Mock server
https://developer.alteg.io/_mock/en/b2b-v1/openapi/
Production
https://api.alteg.io/api/v1/

Authentication B2B

User authentication and session management for B2B integrations

Operations

Locations

Manage business locations (salons, clinics, etc.)

Operations

Services

Service catalog management including categories and team member assignments

Operations

Team Members

Staff management including positions and scheduling

Operations

Clients

Client database management with comments, files, and visit history

Operations

Users & Permissions

User account management and role-based access control

Operations

Appointments

Booking records and visit management

Operations

Events

Group events and class management

Operations

Schedule & Resources

Timetables, schedules, and resource allocation

Operations

Products

Product catalog and categories

Operations

Inventory

Stock management, storage operations, and tech cards

Operations

Sales

Sales transactions and document management

Operations

Payments

Payment processing, accounts, and KKM transactions

Operations

Notifications

SMS and email notifications to clients

Operations

Online Booking Settings

Configure online booking behavior and forms

Operations

Analytics & Reports

Business analytics, charts, and Z-reports

Operations

Tags

Label management for categorizing entities (deprecated, use v2)

Operations

Deposits

Client deposit accounts and operations

Operations

Loyalty Cards

Loyalty card types, issuance, and manual transactions

Operations

Subscriptions & Certificates

Membership subscriptions and gift certificates

Operations

Loyalty Programs

Discount programs, referral programs, and loyalty transactions

Operations

Salary

Staff salary calculations, payroll, and schemes

Operations

Getting payroll for a period for a team member

Request

The method allows location owner to get the calculation for the period for a team member.

Security
BearerPartnerUser
Path
location_idnumberrequired

ID of a location.

Example: 123
team_member_idintegerrequired

ID of a team member.

Example: 123
Query
date_fromstringrequired

Start from date.

Example: date_from=2026-03-01
date_tostringrequired

End to date.

Example: date_to=2026-03-31
Headers
Acceptstringrequired

Should be equal to application/vnd.api.v2+json

Example: application/vnd.api.v2+json
Content-Typestringrequired

Should be equal to application/json

Example: application/json
curl -i -X GET \
  'https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/123/salary/period/staff/123?date_from=2026-03-01&date_to=2026-03-31' \
  -H 'Accept: application/vnd.api.v2+json' \
  -H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
  -H 'Content-Type: application/json'

Responses

OK

Bodyapplication/json
successboolean(response_success_true_object)

Response status.

dataobject(salary_staff_calculation)

Mutual settlements.

metaArray of objects or arrays or object(response_meta_empty_object)

Additional response data (empty object or empty array)

Response
application/json
{ "success": true, "data": { "working_days_count": 32, "working_hours_count": 353, "group_services_count": 3, "services_count": 0, "services_sum": 0, "goods_sales_count": 0, "goods_sales_sum": 0, "total_sum": 0, "salary": 70600, "currency": {} }, "meta": [] }

Get Mutual Settlements for a Specific Team Member

Request

The method allows you to get mutual settlements of a specific team member. In the user's access rights, the checkbox "Access to payroll only for a specific team member" must be specified.

Security
BearerPartnerUser
Path
location_idnumberrequired

ID of a location.

Example: 123
team_member_idintegerrequired

ID of a team member.

Example: 123
Query
date_fromstringrequired

Start from date.

Example: date_from=2026-03-01
date_tostringrequired

End to date.

Example: date_to=2026-03-31
Headers
Acceptstringrequired

Should be equal to application/vnd.api.v2+json

Example: application/vnd.api.v2+json
Content-Typestringrequired

Should be equal to application/json

Example: application/json
curl -i -X GET \
  'https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/123/salary/staff/123/calculation?date_from=2026-03-01&date_to=2026-03-31' \
  -H 'Accept: application/vnd.api.v2+json' \
  -H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
  -H 'Content-Type: application/json'

Responses

OK

Bodyapplication/json
successboolean(response_success_true_object)

Response status.

dataobject(salary_staff_calculation)

Mutual settlements.

metaArray of objects or arrays or object(response_meta_empty_object)

Additional response data (empty object or empty array)

Response
application/json
{ "success": true, "data": { "total_sum": {}, "currency": {} }, "meta": [] }

Get Payroll for a Specific Team Member for a Given Period

Request

The method allows you to get the calculation for the period for a specific team member. In the user's access rights, the checkbox "Access to payroll only for a specific team member" must be checked.

Security
BearerPartnerUser
Path
location_idnumberrequired

ID of a location.

Example: 123
team_member_idintegerrequired

ID of a team member.

Example: 123
Query
date_fromstringrequired

Start from date.

Example: date_from=2026-03-01
date_tostringrequired

End to date.

Example: date_to=2026-03-31
Headers
Acceptstringrequired

Should be equal to application/vnd.api.v2+json

Example: application/vnd.api.v2+json
Content-Typestringrequired

Should be equal to application/json

Example: application/json
curl -i -X GET \
  'https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/123/salary/staff/123/period?date_from=2026-03-01&date_to=2026-03-31' \
  -H 'Accept: application/vnd.api.v2+json' \
  -H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
  -H 'Content-Type: application/json'

Responses

OK

Bodyapplication/json
successboolean(response_success_true_object)

Response status.

dataobject(salary_staff_period)

Payroll for a period for a specific team member.

metaArray of objects or arrays or object(response_meta_empty_object)

Additional response data (empty object or empty array)

Response
application/json
{ "success": true, "data": { "working_days_count": 32, "working_hours_count": 353, "group_services_count": 3, "services_count": 0, "services_sum": 0, "goods_sales_count": 0, "goods_sales_sum": 0, "total_sum": 0, "salary": 70600, "currency": {} }, "meta": [] }

Notification Settings

Configure notification types and user preferences

Custom Fields

Custom field definitions for various entities

Operations

Chain Management

Multi-location chain operations and clients

Operations

Chain Loyalty Programs

Chain-level loyalty programs and transactions

Operations

Fiscalization

Tax system integration and KKM callbacks

Operations

Utilities

License info, phone validation, images, and tips

Operations