Get a subscription

To retrieve the list of subscriptions:

GET https://webhook.apaleo.com/v1/subscriptions/{id}

The response will be an array of objects representing your subscriptions. Each object will include information on the subscription like the ID, create date, and property IDs. Here’s what an example response would look like:

{
  "id": "dd193d24-136e-4f87-830a-ea790e58d87d",
  "events": [
    "reservation/*", 
    "folio/created",
    "folio/charges-changed"
  ],
  "endpointUrl": "https://example.com",
  "created": "2020-05-20T11:37:16.712071Z",
  "propertyIds": ["MUC", "BER"]
}