v1

latestOpenAPI 3.1.1Altegio API Agreement2026-08-062032133.5 KB
Marketplace

Webhook from Altegio About Application Events

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.

post/marketplace_webhook

Headers

Acceptstring required

e.g. application/vnd.api.v2+json

Request body

salon_idnumber required

Location ID.

application_idnumber required

Application ID.

event'uninstall' | 'freeze' required

Event Slug.

partner_tokenstring required

Bearer token of the developer's location (to verify the origin of the webhook)

Example request

{
  "salon_id": 123,
  "application_id": 123,
  "event": "uninstall",
  "partner_token": "yasdfkjah2328aj"
}

Response

From the side of the partner, a response code of successful processing (200-299) is expected.