Webex · Schema

WorkTypeBulkExportDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string A name for the Work Type.
description string A description for the Work type code created.
workTypeCode string Identifier for the Work Type being created. Can be 'WRAP_UP_CODE' or 'IDLE_CODE'.
View JSON Schema on GitHub

JSON Schema

webex-worktypebulkexportdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkTypeBulkExportDTO",
  "title": "WorkTypeBulkExportDTO",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "A name for the Work Type.",
      "example": "Idle Code"
    },
    "description": {
      "type": "string",
      "description": "A description for the Work type code created.",
      "example": "This is an 'Idle' work type."
    },
    "workTypeCode": {
      "type": "string",
      "description": "Identifier for the Work Type being created. Can be 'WRAP_UP_CODE' or 'IDLE_CODE'. ",
      "example": "IDLE_CODE"
    }
  }
}