Webex · Schema
PostCallParkObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Unique name for the call park. The maximum length is 80. |
| recall | object | Recall options that are added to the call park. |
| agents | array | Array of ID strings of people, workspaces and virtual lines that are added to the call park. |
| parkOnAgentsEnabled | boolean | Whether or not the calls will be parked on agents as a destination. |
| callParkExtensions | array | Array of ID strings of call park extensions assigned to a call park. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PostCallParkObject",
"title": "PostCallParkObject",
"type": "object",
"required": [
"name",
"recall"
],
"properties": {
"name": {
"type": "string",
"example": "technical support - insurance - customer 1",
"description": "Unique name for the call park. The maximum length is 80."
},
"recall": {
"$ref": "#/components/schemas/PutRecallHuntGroupObject",
"description": "Recall options that are added to the call park."
},
"agents": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of ID strings of people, workspaces and virtual lines that are added to the call park."
},
"parkOnAgentsEnabled": {
"type": "boolean",
"description": "Whether or not the calls will be parked on agents as a destination."
},
"callParkExtensions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of ID strings of call park extensions assigned to a call park."
}
}
}