Webex · Schema

WorkspacePersonalizationTaskResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
success boolean Describes if the personalization was successful.
errorDescription string A description of the error will be provided if the personalization was not successful.
View JSON Schema on GitHub

JSON Schema

webex-workspacepersonalizationtaskresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkspacePersonalizationTaskResponse",
  "title": "WorkspacePersonalizationTaskResponse",
  "type": "object",
  "required": [
    "success"
  ],
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Describes if the personalization was successful."
    },
    "errorDescription": {
      "type": "string",
      "example": "Device is offline",
      "description": "A description of the error will be provided if the personalization was not successful."
    }
  }
}