Webex · Schema

endpointInformation

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
preferredAnswerEndpointId string Person’s preferred answer endpoint.
endpoints array Array of endpoints available to the person.
View JSON Schema on GitHub

JSON Schema

webex-endpointinformation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/endpointInformation",
  "title": "endpointInformation",
  "type": "object",
  "required": [
    "preferredAnswerEndpointId",
    "endpoints"
  ],
  "properties": {
    "preferredAnswerEndpointId": {
      "type": "string",
      "example": "Y2lzY29z...",
      "description": "Person\u2019s preferred answer endpoint.",
      "nullable": true
    },
    "endpoints": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/endpoints"
      },
      "description": "Array of endpoints available to the person."
    }
  }
}