v1

latestOpenAPI 3.1.1Altegio API Agreement2026-08-062032133.5 KB
Marketplace

Notify Altegio of Successful Payment

A webhook notification must be sent to this address to inform Altegio of a successful payment made on the partner service’s side.

post/marketplace/partner/payment

Headers

Acceptstring required

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

Request body

salon_idnumber required

Location ID.

application_idnumber required

Application ID.

currency_isostring required

Currency ISO (e.g.: USD, EUR, BYN)

payment_sumnumber required

Payment amount.

payment_datestring required

Date and time of payment.

period_fromstring required

Date from which the paid period begins (inclusive).

period_tostring required

Date from which the paid period ends (inclusive).

Example request

{
  "salon_id": 123,
  "application_id": 123,
  "currency_iso": "EUR",
  "payment_sum": 990.99,
  "payment_date": "2022-01-01 10:10:00",
  "period_from": "2022-01-01 10:10:00",
  "period_to": "2022-02-01 10:10:00"
}

Response

Webhook ok

successboolean

Status.

Example response

{
  "success": true,
  "data": {
    "id": 123
  }
}