Webex · Schema

UpdateWrapUpReasonPayload

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name of the wrap-up reason.
description string Description of the wrap-up reason.
queuesToAssign array List of queue IDs to assign to the wrap-up reason.
queuesToUnassign array List of queue IDs to unassign from the wrap-up reason.
assignAllQueuesEnabled boolean Denotes whether all queues are assigned to the wrap-up reason.
unassignAllQueuesEnabled boolean Denotes whether all queues are unassigned from the wrap-up reason.
View JSON Schema on GitHub

JSON Schema

webex-updatewrapupreasonpayload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateWrapUpReasonPayload",
  "title": "UpdateWrapUpReasonPayload",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Wrap up reason 1",
      "description": "Name of the wrap-up reason."
    },
    "description": {
      "type": "string",
      "example": "This is a description for wrap-up reason 1",
      "description": "Description of the wrap-up reason."
    },
    "queuesToAssign": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "Y2lzY29zcGFyazovL3VzL0NBTExfUVVFVUUvOGY1MDI2ZjMtMDZjYi00OTU3LWE0MDQtNDYyM2UzYjJjYzVi"
      },
      "description": "List of queue IDs to assign to the wrap-up reason."
    },
    "queuesToUnassign": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "Y2lzY29zcGFyazovL3VzL0NBTExfUVVFVUUvMTM1NDg0YTMtN2Y0Yi00MTlhLWI2ZGQtMTk4NmY5MmQwYWQ1"
      },
      "description": "List of queue IDs to unassign from the wrap-up reason."
    },
    "assignAllQueuesEnabled": {
      "type": "boolean",
      "description": "Denotes whether all queues are assigned to the wrap-up reason."
    },
    "unassignAllQueuesEnabled": {
      "type": "boolean",
      "description": "Denotes whether all queues are unassigned from the wrap-up reason."
    }
  }
}