Webex · Schema

CallPickupGroupSettingsGet

Represents the call pickup group settings for a user.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
groupName string Name of the call pickup group.
memberList array List of members in the call pickup group.
View JSON Schema on GitHub

JSON Schema

webex-callpickupgroupsettingsget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallPickupGroupSettingsGet",
  "title": "CallPickupGroupSettingsGet",
  "type": "object",
  "description": "Represents the call pickup group settings for a user.",
  "example": {
    "groupName": "Business Agents Call Pickup",
    "memberList": [
      {
        "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU",
        "type": "PEOPLE",
        "firstName": "John",
        "lastName": "Doe",
        "departmentName": "Electric",
        "directNumber": "+19075551234",
        "extension": "1234",
        "email": "[email protected]"
      }
    ]
  },
  "required": [
    "groupName",
    "memberList"
  ],
  "properties": {
    "groupName": {
      "type": "string",
      "example": "Business Agents Call Pickup",
      "description": "Name of the call pickup group."
    },
    "memberList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CallPickupGroupMember"
      },
      "description": "List of members in the call pickup group."
    }
  }
}