Cisco Voice Portal · Schema

VxmlSessionDetail

Contact CenterIVRTelephonyVoiceVXML

Properties

Name Type Description
sessionId string
callGuid string
applicationName string
startTime string
duration integer
currentElement string
callingNumber string
calledNumber string
sessionVariables object VXML session-level variables
elementHistory array History of elements visited in this session
lastUserInput string Last input received from the caller (DTMF or ASR result)
View JSON Schema on GitHub

JSON Schema

cisco-voice-portal-vxml-services-vxml-session-detail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VxmlSessionDetail",
  "type": "object",
  "properties": {
    "sessionId": {
      "type": "string"
    },
    "callGuid": {
      "type": "string"
    },
    "applicationName": {
      "type": "string"
    },
    "startTime": {
      "type": "string"
    },
    "duration": {
      "type": "integer"
    },
    "currentElement": {
      "type": "string"
    },
    "callingNumber": {
      "type": "string"
    },
    "calledNumber": {
      "type": "string"
    },
    "sessionVariables": {
      "type": "object",
      "description": "VXML session-level variables"
    },
    "elementHistory": {
      "type": "array",
      "description": "History of elements visited in this session"
    },
    "lastUserInput": {
      "type": "string",
      "description": "Last input received from the caller (DTMF or ASR result)"
    }
  }
}