Marketplace application management, billing, and installation.
- Get application tariffs
Data About Locations Connected to the Application
Set payment discount for locations
Generate payment link
Update notification channel availability
Application Status Data for Any Location
Application Uninstall
Application Installation for a Location
Redirect URL after user registration with the partner service
Notify Altegio of Successful Payment
Chargeback Notice
Notify Altegio of Available SMS Sender Names
Webhook from Altegio About Application Events
Get application tariffs
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.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developer.alteg.io/_mock/en/developers/openapi/
Production
https://api.alteg.io/api/v1/
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace/application/{application_id}/salons
- https://app.alteg.io/marketplace/application/{application_id}/salons
- 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/{application_id}/salons?page=0&count=1000' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>'Locations array
Array of objects
Example: [{"id":1050,"title":"La Visage","public_title":"La Visage Beauty","short_descr":"Beauty saloon","logo":"https://app.alteg.io/images/no-master.png","active":1,"phone":"+13155550175","phones":["+13155550175"],"email":"info@lavisage.com","country_id":7,"schedule":"","country":"United States","city_id":181,"city":"New York","timezone":-5,"timezone_name":"America/New_York","address":"New York, 787 Jackson Drive","coordinate_lat":40.73061,"coordinate_lon":-73.935242,"phone_confirmation":true,"active_staff_count":2,"next_slot":"2026-03-23T10:10:00-05:00","app_ios":"","app_android":"","currency_short_title":"$","reminds_sms_disabled":false,"reminds_sms_default":1,"group_priority":900,"bookform_group_priority":0,"description":"<p>Welcome to La Visage</p>","photos":[],"booking_widget_promo":null}]
Response
application/json
{ "success": true, "data": [ { … } ], "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace/application/{application_id}/tariffs
- Productionhttps://api.alteg.io/api/v1/marketplace/application/{application_id}/tariffs
- 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/123/tariffs \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>'Response
application/json
{ "success": true, "data": [ { … } ], "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace/application/add_discount
- Productionhttps://api.alteg.io/api/v1/marketplace/application/add_discount
- 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/add_discount \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"salon_ids": [
123,
456
],
"application_id": 123,
"discount": 15.54
}'Response
application/json
{ "success": true, "data": {}, "meta": [] }