Marketplace application management, billing, and installation.
- 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.
- 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
{ "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>'{ "success": true, "data": [ { … } ], "meta": [] }
Request
Sets a payment discount for specific locations when they pay through Altegio platform.
Note: This endpoint is intended for marketplace partners only. Requires marketplace partner authorization.
- 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
}'{ "success": true, "data": {}, "meta": [] }