Webex · Schema

UserOutgoingPermissionGet

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.
View JSON Schema on GitHub

JSON Schema

webex-useroutgoingpermissionget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserOutgoingPermissionGet",
  "title": "UserOutgoingPermissionGet",
  "type": "object",
  "required": [
    "useCustomPermissions",
    "callingPermissions"
  ],
  "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/CallingPermission"
      },
      "description": "Workspace's list of outgoing permissions."
    }
  }
}