User authentication and session management for B2B integrations
- Add a comment for a client
Adding a Client
Get a list of clients
Get a client
Edit client
Delete client
Bulk adding clients
List of a comments for a client
Delete a comment for a client
Sample Request to Get a List of Client Files
Delete request example
Search by customer history
Deprecated. Get a list of clients
Add a comment for a clien...
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/clients/{location_id}/clients/{client_id}/comments
- Productionhttps://api.alteg.io/api/v1/clients/{location_id}/clients/{client_id}/comments
- 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/clients/123/clients/123/comments \
-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": 10 } }
Bodyapplication/json
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/clients/{location_id}/clients/{client_id}/comments
- Productionhttps://api.alteg.io/api/v1/clients/{location_id}/clients/{client_id}/comments
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.alteg.io/_mock/en/b2b-v1/openapi/clients/123/clients/123/comments \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"text": "Comment for a client"
}'Response
application/json
{ "success": true, "data": { "id": 123, "create_date": "2026-01-01T12:12:12-05:00", "update_date": "2026-01-01T12:12:12-05:00", "type": "default", "text": "Comment for a client", "files": [], "user": { … } }, "meta": {} }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/clients/{location_id}/clients/{client_id}/comments/{comment_id}
- Productionhttps://api.alteg.io/api/v1/clients/{location_id}/clients/{client_id}/comments/{comment_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://developer.alteg.io/_mock/en/b2b-v1/openapi/clients/123/clients/123/comments/123 \
-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": null, "meta": {} }