User authentication and session management for B2B integrations
- Retrieve a list of bill of materials and consumables
Get location inventories
Search for product transactions
Create an inventory operation
Create document
Get document
Update Document
Delete document
Create Transaction
Get a transaction
Transaction update
Deleting a transaction
Get Product Transactions of a Document
Get the Bill of Materials for a Team Member’s Service
Retrieve a list of bill of materials and consumables
Update Consumables for the Appointment-Service Association
Unlink Appointment-Service Association
Retrieve a list of bill o...
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/storage_operations/documents/goods_transactions/{document_id}
- Productionhttps://api.alteg.io/api/v1/storage_operations/documents/goods_transactions/{document_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/storage_operations/documents/goods_transactions/{document_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: string'OK
Array of objects with data
Example: [{"id":3728232,"document_id":22256643,"type_id":1,"company_id":4564,"good_id":587018,"amount":-10,"cost_per_unit":100,"discount":0,"cost":1000,"unit_id":88272,"operation_unit_type":1,"storage_id":36539,"supplier_id":0,"record_id":0,"client_id":0,"master_id":49754,"create_date":"2026-09-21T23:00:00.000-05:00","comment":"","service_id":0,"user_id":3,"deleted":false,"pkg_amount":0},{"id":3728233,"document_id":22256643,"type_id":1,"company_id":4564,"good_id":232674,"amount":-10,"cost_per_unit":127.5,"discount":0,"cost":1275,"unit_id":1,"operation_unit_type":2,"storage_id":36539,"supplier_id":0,"record_id":0,"client_id":0,"master_id":49754,"create_date":"2026-09-21T23:00:00.000-05:00","comment":"","service_id":0,"user_id":3,"deleted":false,"pkg_amount":0}]
Response
application/json
{ "success": true, "data": [ { … }, { … } ], "meta": { "count": 2 } }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/technological_cards/{location_id}
- Productionhttps://api.alteg.io/api/v1/technological_cards/{location_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/technological_cards/{location_id}?search=%27test%27&page=1&count=20' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: string'OK
Array of data objects
Example: [{"id":1,"title":"Tech map 1","technological_card_items":[{"id":3,"technological_card_id":1,"storage_id":4234,"good_id":34234,"amount":12,"unit":"l","price":0.0742,"title":"Consumable 3"}]},{"id":2,"title":"Tech map 2","technological_card_items":[{"id":4,"technological_card_id":2,"storage_id":4234,"good_id":34235,"amount":10,"unit":"l","price":0.02412,"title":"Consumable 4"}]}]
Response
application/json
{ "success": true, "data": [ { … }, { … } ], "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/technological_cards/default_for_staff_and_service/{location_id}/{team_member_id}/{service_id}
- Productionhttps://api.alteg.io/api/v1/technological_cards/default_for_staff_and_service/{location_id}/{team_member_id}/{service_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/technological_cards/default_for_staff_and_service/{location_id}/{team_member_id}/{service_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: string'OK
Array of data objects
Example: [{"id":1,"title":"Tech map 1","technological_card_items":[{"id":3,"technological_card_id":1,"storage_id":4234,"good_id":34234,"amount":12,"unit":"l","price":0.0742,"title":"Consumable 3"}]},{"id":2,"title":"Tech map 2","technological_card_items":[{"id":4,"technological_card_id":2,"storage_id":4234,"good_id":34235,"amount":10,"unit":"l","price":0.02412,"title":"Consumable 4"}]}]
Response
application/json
{ "success": true, "data": { "id": 1, "title": "Tech map 1", "technological_card_items": [ … ] }, "meta": [] }