Cisco Voice Portal · Schema

SipSession

Contact CenterIVRTelephonyVoiceVXML

Properties

Name Type Description
sessionId string
callId string SIP Call-ID
callGuid string Associated CVP call GUID
state string
method string Initial SIP method (INVITE)
fromUri string
toUri string
startTime string
View JSON Schema on GitHub

JSON Schema

cisco-voice-portal-call-control-sip-session-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SipSession",
  "type": "object",
  "properties": {
    "sessionId": {
      "type": "string"
    },
    "callId": {
      "type": "string",
      "description": "SIP Call-ID"
    },
    "callGuid": {
      "type": "string",
      "description": "Associated CVP call GUID"
    },
    "state": {
      "type": "string"
    },
    "method": {
      "type": "string",
      "description": "Initial SIP method (INVITE)"
    },
    "fromUri": {
      "type": "string"
    },
    "toUri": {
      "type": "string"
    },
    "startTime": {
      "type": "string"
    }
  }
}