Webex · Schema
WrapUpReasonObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique wrap-up identifier. |
| name | string | Name of the wrap-up reason. |
| description | string | Description of the wrap-up reason. |
| numberOfQueuesAssigned | number | Number of queues assigned to the wrap-up reason. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WrapUpReasonObject",
"title": "WrapUpReasonObject",
"type": "object",
"required": [
"id",
"name",
"numberOfQueuesAssigned"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1dSQVBVUF9SRUFTT05fSUQvOGVmNzM4OTctMmQzNS00ZjgwLWJkOGQtYzRjNmRhNWNlZjA2",
"description": "Unique wrap-up identifier."
},
"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."
},
"numberOfQueuesAssigned": {
"type": "number",
"example": 1,
"description": "Number of queues assigned to the wrap-up reason."
}
}
}