Marketplace application management, billing, and installation.
- Set payment discount for locations
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}/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": [] }
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": [] }