Customers can use the following webhooks services under the configs\notifications\events endpoint
Endpoint: POST
/configs/notifications/events/{eventName}
The subscribe events service is used to subscribe to an event for receiving notifications.
The callback URL, where the notification will be posted should be provided to this service.
If the callback URL is invalid or inaccessible, the subscription will be unsuccessful, and an error will be thrown.
Customers can subscribe to REFRESH,DATA_UPDATES and AUTO_REFRESH_UPDATES event.
Notes:
curl -X POST /configs/notifications/events/{eventName} \\
-H 'Content-Type: application/json' \\
-d '{
"event": {
"callbackUrl": "string"
}
}'
On Success, Response code is 201