Webex · Schema

UserEndpoints

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the endpoint.
type object Type of the endpoint.
name string Name of the endpoint.
status object SIP Registration status of the device.
View JSON Schema on GitHub

JSON Schema

webex-userendpoints-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserEndpoints",
  "title": "UserEndpoints",
  "type": "object",
  "required": [
    "id",
    "type",
    "name",
    "status"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VybjpURUFNOnVzLWVhc3QtMV9pbnQxMy9DQUxMSU5HX0RFVklDRS85MGQyMmM0Yy0wMGI3LTQ4YzAtYjUwNi0yM2UwY2E2MTlkYmM",
      "description": "Unique identifier of the endpoint."
    },
    "type": {
      "$ref": "#/components/schemas/EndpointType",
      "description": "Type of the endpoint."
    },
    "name": {
      "type": "string",
      "example": "Webex Go Device",
      "description": "Name of the endpoint."
    },
    "status": {
      "$ref": "#/components/schemas/EndpointStatus",
      "description": "SIP Registration status of the device."
    }
  }
}