Cisco Voice Portal · Schema

ActiveCall

Contact CenterIVRTelephonyVoiceVXML

Properties

Name Type Description
callGuid string Globally unique call identifier
state string
callingNumber string Caller ANI
calledNumber string Called DNIS
startTime string
duration integer Current call duration in seconds
applicationName string Current VXML application handling the call
View JSON Schema on GitHub

JSON Schema

cisco-voice-portal-call-control-active-call-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActiveCall",
  "type": "object",
  "properties": {
    "callGuid": {
      "type": "string",
      "description": "Globally unique call identifier"
    },
    "state": {
      "type": "string"
    },
    "callingNumber": {
      "type": "string",
      "description": "Caller ANI"
    },
    "calledNumber": {
      "type": "string",
      "description": "Called DNIS"
    },
    "startTime": {
      "type": "string"
    },
    "duration": {
      "type": "integer",
      "description": "Current call duration in seconds"
    },
    "applicationName": {
      "type": "string",
      "description": "Current VXML application handling the call"
    }
  }
}