Webex · Schema

AuxCodeBulkExportDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string A name for the code.
description string A short description indicating the context of the code.
defaultCode string Indicates the default work code for your organization.
workTypeName string Indicates the work type associated with this code.
View JSON Schema on GitHub

JSON Schema

webex-auxcodebulkexportdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuxCodeBulkExportDTO",
  "title": "AuxCodeBulkExportDTO",
  "required": [
    "name"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "A name for the code.",
      "example": "Sales-Query"
    },
    "description": {
      "type": "string",
      "description": "A short description indicating the context of the code.",
      "example": "Wrap-up code to for sales query"
    },
    "defaultCode": {
      "type": "string",
      "description": "Indicates the default work code for your organization.",
      "example": "00734874-4732-43bb-bfff-d1e75d309eb1"
    },
    "workTypeName": {
      "type": "string",
      "description": "Indicates the work type associated with this code.",
      "example": "WRAP_UP_CODE"
    }
  }
}