Webex · Schema

CallParkMember

Represents a member of a call park group.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the member.
type object
firstName string First name of the member.
lastName string Last name of the member.
displayName string Display name of the member.
View JSON Schema on GitHub

JSON Schema

webex-callparkmember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallParkMember",
  "title": "CallParkMember",
  "type": "object",
  "description": "Represents a member of a call park group.",
  "example": {
    "id": "Y2lzY29zcGFyazovL3VzL1ZJUlRVQUxfTElORS85M2I0NDkyMi1mZTlmLTExZWItYTRiOC0zMzYyN2JlZDY3YjY",
    "type": "VIRTUAL_LINE",
    "firstName": "Smith",
    "lastName": "Bob",
    "displayName": "Smith Bob"
  },
  "required": [
    "id",
    "type",
    "displayName"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VybjpURUFNOnVzLWVhc3QtMV9pbnQxMy9DQUxMSU5HX0RFVklDRS85MGQyMmM0Yy0wMGI3LTQ4YzAtYjUwNi0yM2UwY2E2MTlkYmM",
      "description": "Unique identifier of the member."
    },
    "type": {
      "$ref": "#/components/schemas/MemberType"
    },
    "firstName": {
      "type": "string",
      "example": "doe",
      "description": "First name of the member."
    },
    "lastName": {
      "type": "string",
      "example": "John",
      "description": "Last name of the member."
    },
    "displayName": {
      "type": "string",
      "example": "John Doe",
      "description": "Display name of the member."
    }
  }
}