Call Data Record (Call End Notification)
from v4.0.0 onwards
redis_port and redis_db settings are determined by your issued configuration - see the configuration document for more information
sample redis connection string
<server_url>:<redis_port>/<redis_db>
e.g. our-client.forge-cloud.com:6379/0
End of call notifications (CDR):
At the end of an inbound or outbound call, a callback is sent via Redis. This callback contains a Call Data Record for the call. To determine whether the notification is from an inbound call use the call_dir field of the payload.
Redis Notification |
//Notification Example
brpop enigma:notifications:cdr
// Payload from v3.0.0 upwards
{
type: "cdr",
payload: {
extension : <ext>,
number : <client_number>,
dial_number : <dial_number>,
call_ref : <internal_call_ref>,
contact_ref : <custom_call_ref>,
dialed_at : <dialed_at> ,
end_reason : <disposition>,
end_code : <ISDN_termination_code>,
call_time : <call_time> ,
hold_time : <hold_time>,
call_dir : <call_dir>,
recording_url: <recording_ref>,
ref : "click-dial"
}
}
// Payload prior to v3.0.0
{
type: "cdr",
payload: {
extension : <ext>,
dial_number : <dial_number>,
call_ref : <internal_call_ref>,
contact_ref : <custom_call_ref>,
dialed_at : <dialed_at> ,
end_reason : <disposition>,
end_code : <ISDN_termination_code>,
call_time : <call_time> ,
hold_time : <hold_time>,
call_dir : <call_dir> ,
recording_url: <recording_ref>,
ref : <client_number>
}
}
| ||||
---|---|---|---|---|---|
WebRTC | No CDR's will be sent over SIP, the reasons for this include:
|
Values:
<ext> | The agent extension or number (if the call is external; between 2 external parties) |
---|---|
<dial_number> | The number the PBX used as part of this call
|
<internal_call_ref> | Current (inline with Dialer spec)
Pre v2.4.0
|
<custom_call_ref> | Your custom identifier for the caller/callee or matter. It should remain the same between multiple calls for the same callee and should be used to link CDR data to a specific person.
|
<disposition> | Dispositions: how the call ended |
<ISDN_termination_code> | |
<client_number> | The clients number (as opposed to the agent)
|