User authentication and session management for B2B integrations
- Obtaining own payroll schemes for a specific 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
Getting payroll for a period for a team member
Get Mutual Settlements for a Specific Team Member
Get Payroll for a Specific Team Member for a Given Period
Obtaining own payroll sch...
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
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
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/salary/staff/{team_member_id}/period
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/salary/staff/{team_member_id}/period
- 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/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'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": [] }
Request
The method allows you to get own salary calculation schemes for 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
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/salary/staff/{team_member_id}/salary_schemes
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/salary/staff/{team_member_id}/salary_schemes
- 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/salary_schemes \
-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": [ { … }, { … } ], "meta": { "count": 2 } }