Webex · Schema
ExecutiveAssistantSettingsGet
Settings for an executive assistant.
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| forwardFilteredCallsEnabled | boolean | If `true`, filtered calls to assistant are forwarded to the `forwardToPhoneNumber`. |
| forwardToPhoneNumber | string | Phone number to forward calls to when `forwardFilteredCallsEnabled` is set to `true`. |
| executives | array | List of executives for whom person is assigned as assistant. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExecutiveAssistantSettingsGet",
"title": "ExecutiveAssistantSettingsGet",
"type": "object",
"description": "Settings for an executive assistant.",
"example": {
"forwardFilteredCallsEnabled": true,
"forwardToPhoneNumber": "+14155551234",
"executives": [
{
"id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8zZWQzNDg0MS0yZTkwLTQ4OGEtYmVmZi1iNTk0OTA1ODFkNWM",
"firstName": "John",
"lastName": "Doe",
"directNumber": "+91-6557765419",
"extension": "10079",
"optInEnabled": true
}
]
},
"required": [
"forwardFilteredCallsEnabled"
],
"properties": {
"forwardFilteredCallsEnabled": {
"type": "boolean",
"example": true,
"description": "If `true`, filtered calls to assistant are forwarded to the `forwardToPhoneNumber`."
},
"forwardToPhoneNumber": {
"type": "string",
"example": "6822234354",
"description": "Phone number to forward calls to when `forwardFilteredCallsEnabled` is set to `true`."
},
"executives": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Executive"
},
"description": "List of executives for whom person is assigned as assistant."
}
}
}