Properties
| Name | Type | Description |
|---|---|---|
| callGuid | string | |
| state | string | |
| callingNumber | string | |
| calledNumber | string | |
| startTime | string | |
| duration | integer | |
| applicationName | string | |
| sipCallId | string | SIP Call-ID |
| sipFromTag | string | |
| sipToTag | string | |
| icmRouteResult | object | |
| vxmlServer | string | VXML Server currently handling the call |
| callHistory | array | Chronological list of call events |
| eccVariables | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ActiveCallDetail",
"type": "object",
"properties": {
"callGuid": {
"type": "string"
},
"state": {
"type": "string"
},
"callingNumber": {
"type": "string"
},
"calledNumber": {
"type": "string"
},
"startTime": {
"type": "string"
},
"duration": {
"type": "integer"
},
"applicationName": {
"type": "string"
},
"sipCallId": {
"type": "string",
"description": "SIP Call-ID"
},
"sipFromTag": {
"type": "string"
},
"sipToTag": {
"type": "string"
},
"icmRouteResult": {
"type": "object"
},
"vxmlServer": {
"type": "string",
"description": "VXML Server currently handling the call"
},
"callHistory": {
"type": "array",
"description": "Chronological list of call events"
},
"eccVariables": {
"type": "object"
}
}
}