Webex · Schema

MonitoredMemberObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the person, workspace or virtual line to be monitored.
lastName string Last name of the monitored person, workspace or virtual line.
firstName string First name of the monitored person, workspace or virtual line.
displayName string Display name of the monitored person, workspace or virtual line.
type object Indicates whether type is person, workspace or virtual line.
email string Email address of the monitored person, workspace or virtual line.
numbers array List of phone numbers of the monitored person, workspace or virtual line.
View JSON Schema on GitHub

JSON Schema

webex-monitoredmemberobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonitoredMemberObject",
  "title": "MonitoredMemberObject",
  "type": "object",
  "required": [
    "id",
    "lastName",
    "firstName",
    "displayName",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82MWU3MDlkNy1hM2IxLTQ2MDctOTBiOC04NmE5MDgxYWFkNmE",
      "description": "Unique identifier of the person, workspace or virtual line to be monitored."
    },
    "lastName": {
      "type": "string",
      "example": "Little",
      "description": "Last name of the monitored person, workspace or virtual line."
    },
    "firstName": {
      "type": "string",
      "example": "Alice",
      "description": "First name of the monitored person, workspace or virtual line."
    },
    "displayName": {
      "type": "string",
      "example": "Alice Little",
      "description": "Display name of the monitored person, workspace or virtual line."
    },
    "type": {
      "$ref": "#/components/schemas/PeopleOrPlaceOrVirtualLineType",
      "description": "Indicates whether type is person, workspace or virtual line."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address of the monitored person, workspace or virtual line."
    },
    "numbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MonitoredNumberObject"
      },
      "description": "List of phone numbers of the monitored person, workspace or virtual line."
    }
  }
}