Webex · Schema

SecondaryLine

Details of a secondary line associated with the endpoint.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for the member.
memberType object
View JSON Schema on GitHub

JSON Schema

webex-secondaryline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecondaryLine",
  "title": "SecondaryLine",
  "type": "object",
  "description": "Details of a secondary line associated with the endpoint.",
  "example": {
    "id": "Y2lzY29zcGFyazovL3VzL1ZJUlRVQUxfTElORS82NDhjYjBkMC1kODU2LTQzNzQtYmI4My0zNWFhNTIxZDhiZmI",
    "memberType": "VIRTUAL_LINE"
  },
  "required": [
    "id",
    "memberType"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1ZJUlRVQUxfTElORS82NDhjYjBkMC1kODU2LTQzNzQtYmI4My0zNWFhNTIxZDhiZmI",
      "description": "Unique identifier for the member."
    },
    "memberType": {
      "$ref": "#/components/schemas/MemberType"
    }
  }
}