Webex · Schema
AvailableAssistant
Details of person available to be assigned as executive assistant.
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the person. |
| firstName | string | Unicode first name of the person. Is null if not available or if name is a single '.' or '-'. |
| lastName | string | Unicode last name of the person. Is null if not available or if name is a single '.' or '-'. |
| directNumber | string | Direct number of the person. |
| extension | string | Extension number of the person. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AvailableAssistant",
"title": "AvailableAssistant",
"type": "object",
"description": "Details of person available to be assigned as executive assistant.",
"example": {
"id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU",
"firstName": "doe",
"lastName": "John",
"directNumber": "+91-6557765419",
"extension": "10079"
},
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU",
"description": "Unique identifier of the person."
},
"firstName": {
"type": "string",
"example": "doe",
"description": "Unicode first name of the person. Is null if not available or if name is a single '.' or '-'."
},
"lastName": {
"type": "string",
"example": "John",
"description": "Unicode last name of the person. Is null if not available or if name is a single '.' or '-'."
},
"directNumber": {
"type": "string",
"example": "+91-6557765419",
"description": "Direct number of the person."
},
"extension": {
"type": "string",
"example": "10079",
"description": "Extension number of the person."
}
}
}