Hi folks!
We were registering a webhook for receiving inbound call events, but we’re doing it for our every single user’s connected account.
Won’t this be a problem when I’ve 1k or 10k registered webhook events ?
By the way, I’m registering my webhook like this:
curl -X POST 'https://platform.ringcentral.com/restapi/v1.0/subscription' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer [ACCESS_TOKEN_OF_CONNECTED_ACCOUNT]' \
-d '{
"eventFilters": ["/restapi/v1.0/account/[ACCOUNT_ID]/telephony/sessions"],
"expiresIn": 31536000,
"deliveryMode": {
"transportType": "WebHook",
"address": "[WEBHOOK_URL]"
}
}'