Call outcome logging

When a call is completed, Voiso sends call data to the CRM.

This webhook is deprecated and no longer recommended for use in new integrations.

The Call Outcome Logging webhook enables you to automatically send call details to your CRM after an agent wraps up a call.


Activation

To enable this webhook:

  1. Go to Administration > System Settings.
  2. Enable the Call Outcome Logging feature.
  3. Specify the URL of your CRM API where the webhook data will be sent via POST.
Call Outcome Logging API settings

Use Case

After each call, Voiso sends a POST request with summary information about the completed interaction. This data can be used to automatically log call outcomes in your CRM or custom reporting system.


Payload Example

{
  "uuid": "07771c38-c159-4965-a878-be0162118b2b",
  "agent_extension": "111",
  "start_time": 1630664544.661,
  "end_time": 1630664575.994,
  "type": "callback",
  "duration": 31.333,
  "disposition": "answered",
  "ani": "443336006114",
  "dnis": "18885658889"
}

Parameters

FieldTypeDescription
uuidstringUnique identifier for the call.
agent_extensionstringExtension number of the agent who handled the call.
start_timenumberUnix timestamp indicating when the call started.
end_timenumberUnix timestamp indicating when the call ended.
typestringCall type. Possible values: inbound, outbound, dialer, callback, outbound_sms.
durationnumberTotal duration of the call in seconds.
dispositionstringCall outcome. Possible values: answered, failed, busy, no_answer, missed, abandoned, rejected, dialer_abandoned, system_abandoned, answered_by_VM, system_reject, machine_answered.
anistringOriginating number (caller ID).
dnisstringDestination number (number dialed).
account_idstringCustomer ID from the CRM. Included only for click-to-call (C2C) calls.

Troubleshooting

If your CRM or endpoint is not receiving webhook messages:

  • Confirm that the URL is correct and reachable in a browser.
  • Verify that the domain is allow-listed on your Voiso cluster.
  • Check that the SSL certificate is valid and up to date.