Webex · Schema

CallPickupGroupMember

Represents a member of a call pickup group.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for the member.
type object
firstName string First name of the member.
lastName string Last name of the member.
departmentName string Department name of the member.
directNumber string Direct number of the member.
extension string Extension of the member.
email string Email address of the member.
View JSON Schema on GitHub

JSON Schema

webex-callpickupgroupmember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallPickupGroupMember",
  "title": "CallPickupGroupMember",
  "type": "object",
  "description": "Represents a member of a call pickup group.",
  "example": {
    "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU",
    "type": "PEOPLE",
    "firstName": "John",
    "lastName": "Doe",
    "departmentName": "Electric",
    "directNumber": "+19075551234",
    "extension": "1234",
    "email": "[email protected]"
  },
  "required": [
    "id",
    "type",
    "firstName",
    "lastName",
    "departmentName",
    "email"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU",
      "description": "Unique identifier for the member."
    },
    "type": {
      "$ref": "#/components/schemas/MemberType"
    },
    "firstName": {
      "type": "string",
      "example": "John",
      "description": "First name of the member."
    },
    "lastName": {
      "type": "string",
      "example": "Doe",
      "description": "Last name of the member."
    },
    "departmentName": {
      "type": "string",
      "example": "Electric",
      "description": "Department name of the member."
    },
    "directNumber": {
      "type": "string",
      "example": "+19075551234",
      "description": "Direct number of the member."
    },
    "extension": {
      "type": "string",
      "example": "1234",
      "description": "Extension of the member."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address of the member."
    }
  }
}