User authentication and session management for B2B integrations
- Get Payroll for a Specific Team Member for a Given Period
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.
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.
- 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'{ "success": true, "data": { "total_sum": { … }, "currency": { … } }, "meta": [] }
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.
- 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'{ "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.
- 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'{ "success": true, "data": [ { … }, { … } ], "meta": { "count": 2 } }