{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ModifyCallParkObject", "title": "ModifyCallParkObject", "type": "object", "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 call park." }, "agents": { "type": "array", "items": { "type": "string" }, "description": "Array of ID strings of people, workspaces and virtual lines that are added to call park. The new list of `agents` will replace any existing call park agents list." }, "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." } } }