Properties
| Name | Type | Description |
|---|---|---|
| sessionId | string | |
| callGuid | string | Associated CVP call GUID |
| applicationName | string | |
| startTime | string | |
| duration | integer | Session duration in seconds |
| currentElement | string | Currently executing call flow element |
| callingNumber | string | |
| calledNumber | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "VxmlSession",
"type": "object",
"properties": {
"sessionId": {
"type": "string"
},
"callGuid": {
"type": "string",
"description": "Associated CVP call GUID"
},
"applicationName": {
"type": "string"
},
"startTime": {
"type": "string"
},
"duration": {
"type": "integer",
"description": "Session duration in seconds"
},
"currentElement": {
"type": "string",
"description": "Currently executing call flow element"
},
"callingNumber": {
"type": "string"
},
"calledNumber": {
"type": "string"
}
}
}