Marketplace application management, billing, and installation.
- Application Status Data for Any Location
Developer Tools (1.0.0)
APIs for partners building integrations with the Altegio platform. Base URL: https://api.alteg.io/api
Marketplace — Manage your marketplace applications: list connected locations, configure tariffs, handle billing, process installation/uninstallation callbacks. Webhooks — Configure event notifications for your integrations. Receive real-time updates when appointments, clients, or other entities change. VoIP Integration — Connect telephony systems to match incoming calls with client records and log call history. Dictionaries — Reference data for building forms and validations: countries, cities, business types.
Request
Updates available notification channels for the application.
Note: Only for Chat Bots and SMS Aggregators category applications. For marketplace partners only.
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace/application/update_channel
- Productionhttps://api.alteg.io/api/v1/marketplace/application/update_channel
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.alteg.io/_mock/en/developers/openapi/marketplace/application/update_channel \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"salon_id": 123,
"application_id": 456,
"channel_slug": "sms",
"is_available": true
}'{ "success": true, "data": {}, "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace/salon/{location_id}/application/{application_id}
- https://app.alteg.io/marketplace/salon/{location_id}/application/{application_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/developers/openapi/marketplace/salon/{location_id}/application/{application_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>'Info about application location link
{ "success": true, "data": { "logs": [ … ], "payments": [ … ], "connection_status": { … } } }
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace/salon/{location_id}/application/{application_id}/uninstall
- https://app.alteg.io/marketplace/salon/{location_id}/application/{application_id}/uninstall
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://developer.alteg.io/_mock/en/developers/openapi/marketplace/salon/{location_id}/application/{application_id}/uninstall' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>'{ "success": true, "data": null, "meta": {} }