Marketplace application management, billing, and installation.
- Update notification channel availability
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
Generates a payment link for application payment through Altegio platform.
Note: For marketplace partners only.
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace/application/payment_link
- Productionhttps://api.alteg.io/api/v1/marketplace/application/payment_link
- 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/application/payment_link?salon_id=123&application_id=456&discount=15.55' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>'{ "success": true, "data": { "url": "https://alteg.io/appstore/payment/?salon_id=1111&application_id=1&discount=15.5&source=api&sign=6f9b5bc6fa787780161ed090af9429d5af963562b7a6ac8051888147370674be" }, "meta": [] }
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": { … } } }