Webex · Schema
GetPersonPlaceVirtualLineCallParksObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of a person, workspace or virtual line. |
| firstName | string | First name of a person, workspace or virtual line. |
| lastName | string | Last name of a person, workspace or virtual line. |
| displayName | string | Display name of a person, workspace or virtual line. |
| type | string | Type of the person, workspace or virtual line. * `PEOPLE` - Indicates that this object is a user. * `PLACE` - Indicates that this object is a place. * `VIRTUAL_LINE` - Indicates that this object is a |
| string | Email of a person or workspace. | |
| numbers | array | List of phone numbers of a person, workspace or virtual line. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetPersonPlaceVirtualLineCallParksObject",
"title": "GetPersonPlaceVirtualLineCallParksObject",
"type": "object",
"required": [
"id",
"firstName",
"lastName",
"displayName",
"type",
"email"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS80NDVkMzMzMC1mNjE3LTExZWItOWQyZS01NzViODE3ZGE2NmE",
"description": "ID of a person, workspace or virtual line."
},
"firstName": {
"type": "string",
"example": "John",
"description": "First name of a person, workspace or virtual line."
},
"lastName": {
"type": "string",
"example": "Brown",
"description": "Last name of a person, workspace or virtual line."
},
"displayName": {
"type": "string",
"example": "johnBrown",
"description": "Display name of a person, workspace or virtual line."
},
"type": {
"type": "string",
"enum": [
"PEOPLE",
"PLACE",
"VIRTUAL_LINE"
],
"description": "Type of the person, workspace or virtual line.\n * `PEOPLE` - Indicates that this object is a user.\n * `PLACE` - Indicates that this object is a place.\n * `VIRTUAL_LINE` - Indicates that this object is a virtual line.\n"
},
"email": {
"type": "string",
"example": "[email protected]",
"description": "Email of a person or workspace."
},
"numbers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GetUserNumberItemObject"
},
"description": "List of phone numbers of a person, workspace or virtual line."
}
}
}