Webex · Schema
UserOutgoingPermissionPatch
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| useCustomEnabled | boolean | When `true`, indicates that this workspace uses the shared control that applies to all outgoing call settings categories when placing outbound calls. |
| useCustomPermissions | boolean | When `true`, indicates that this workspace uses the specified outgoing calling permissions when placing outbound calls. |
| callingPermissions | array | Workspace's list of outgoing permissions. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserOutgoingPermissionPatch",
"title": "UserOutgoingPermissionPatch",
"type": "object",
"properties": {
"useCustomEnabled": {
"type": "boolean",
"example": true,
"description": "When `true`, indicates that this workspace uses the shared control that applies to all outgoing call settings categories when placing outbound calls."
},
"useCustomPermissions": {
"type": "boolean",
"example": true,
"description": "When `true`, indicates that this workspace uses the specified outgoing calling permissions when placing outbound calls."
},
"callingPermissions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ModifyCallingPermission"
},
"description": "Workspace's list of outgoing permissions."
}
}
}