RingCentral phone calls webhook
POST
/api/v1/webhooks/phone_calls_webhooks/ringcentral
const url = 'https://dashboard.dealerstudio.com.au/api/v1/webhooks/phone_calls_webhooks/ringcentral';const options = { method: 'POST', headers: { verification_token: 'ringcentral-verification-token', x_validation_token: 'handshake-token', Authorization: 'Bearer <token>', 'Content-Type': 'application/json' }, body: '{"id":"rc-123","event":"/restapi/v1.0/account/acc/telephony/sessions","body":{"telephonySessionId":"Y3MxNzE4...","eventTime":"2025-11-13T01:02:03Z","parties":[{"direction":"Inbound","to":{"phoneNumber":"+61730000000"},"from":{"phoneNumber":"+61400000000"}}]}}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://dashboard.dealerstudio.com.au/api/v1/webhooks/phone_calls_webhooks/ringcentral \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'verification_token: ringcentral-verification-token' \ --header 'x_validation_token: handshake-token' \ --data '{ "id": "rc-123", "event": "/restapi/v1.0/account/acc/telephony/sessions", "body": { "telephonySessionId": "Y3MxNzE4...", "eventTime": "2025-11-13T01:02:03Z", "parties": [ { "direction": "Inbound", "to": { "phoneNumber": "+61730000000" }, "from": { "phoneNumber": "+61400000000" } } ] } }'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Header Parameters
Section titled “Header Parameters ” verification_token
required
string
Example
ringcentral-verification-token x_validation_token
string
Example
handshake-tokenRequest Body
Section titled “Request Body ” Media type application/json
object
id
string
Example
rc-123 event
string
Example
/restapi/v1.0/account/acc/telephony/sessions body
object
telephonySessionId
string
Example
Y3MxNzE4... eventTime
string
Example
2025-11-13T01:02:03Z parties
Array<object>
object
direction
string
Example
Inbound to
object
phoneNumber
string
Example
+61730000000 from
object
phoneNumber
string
Example
+61400000000Responses
Section titled “ Responses ”Accepted
Unauthorised - invalid verification token