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 |
JSON Schema
{
"$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"
}
}
}