Webex · Schema

RedirectionInformation

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
reason object The reason the incoming call was redirected.
redirectingParty object The details of a party who redirected the incoming call.
View JSON Schema on GitHub

JSON Schema

webex-redirectioninformation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RedirectionInformation",
  "title": "RedirectionInformation",
  "type": "object",
  "required": [
    "reason",
    "redirectingParty"
  ],
  "properties": {
    "reason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RedirectionReasonEnum"
        }
      ],
      "description": "The reason the incoming call was redirected."
    },
    "redirectingParty": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PartyInformation"
        }
      ],
      "description": "The details of a party who redirected the incoming call."
    }
  }
}