Marketplace application management, billing, and installation.
- Webhook from Altegio About Application Events
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
This endpoint is used to send the list of SMS sender names available to the user. The user will be able to choose from any of the provided sender names.
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace/partner/short_names
- https://app.alteg.io/marketplace/partner/short_names
- 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/partner/short_names \
-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": 123,
"short_names": [
"Altegio",
"AL"
]
}'Request
Note: This is not a callable endpoint.
This section describes how Altegio sends webhook notifications when specific events occur in the application-to-location lifecycle. The following event types are currently supported:
- uninstall — Sent when the application is disabled on the Altegio side.
- freeze — Sent when the integration is frozen due to service expiration.
You can configure the webhook URL for receiving these events in your Altegio Developer Account.
- Mock serverhttps://developer.alteg.io/_mock/en/developers/openapi/marketplace_webhook
- https://api.alteg.io/marketplace_webhook
- 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_webhook \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Content-Type: application/json' \
-d '{
"salon_id": 123,
"application_id": 123,
"event": "uninstall",
"partner_token": "yasdfkjah2328aj"
}'From the side of the partner, a response code of successful processing (200-299) is expected.
No content