Update a subscription
To update a subscription, you can use the following endpoint:
PUT https://webhook.apaleo.com/v1/subscriptions/{id}
Keep in mind that the only things that can be updated as of right now are:
- The URL to which the webhooks will be sent.
- The list of properties for the subscription.
Here is a sample payload:
{
"endpointUrl": "https://www.example.com",
"propertyIds": [
"MUC",
"LON"
]
}