User authentication and session management for B2B integrations
- Getting payroll for a period for a team member
Receipt of mutual settlements of a team member grouped by date
Receipt of mutual settlements of a team member
Obtaining payroll schemes count for a team member
Search payroll calculations of a team member
Get payroll calculation details of a team member
Getting payroll for a period for a team member grouped by date
Get Mutual Settlements for a Specific Team Member
Get Payroll for a Specific Team Member for a Given Period
Obtaining own payroll schemes for a specific team member
Getting payroll for a per...
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}/salary/period/staff/daily/{team_member_id}
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/salary/period/staff/daily/{team_member_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/company/123/salary/period/staff/daily/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'Response
application/json
{ "success": true, "data": { "period_calculation_daily": [ … ], "currency": { … } }, "meta": { "count": 1 } }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/salary/period/staff/{team_member_id}
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/salary/period/staff/{team_member_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/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'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": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/salary/staff/{team_member_id}/calculation
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/salary/staff/{team_member_id}/calculation
- 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/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'Response
application/json
{ "success": true, "data": { "total_sum": { … }, "currency": { … } }, "meta": [] }