View to add a Contact Center Express Agent to an existing Subscriber.
GET http://[host-proxy]/api/view/AddUccxAgentToSubscriber/schema/?hierarchy=[hierarchy]&format=json&schema=1
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"username": {
"required": true,
"type": "string",
"description": "Username of the subscriber.",
"title": "Username"
},
"agent_profile": {
"required": false,
"type": "string",
"description": "The profile to use for agent configuration.",
"title": "Agent Profile"
},
"extension": {
"required": true,
"type": "string",
"description": "The subscriber extension to use as the agent line.",
"title": "Extension"
},
"device_name": {
"required": true,
"type": "string",
"description": "The type of controlled device i.e. Phone or Extension Mobility Profile.",
"title": "Controlled Device Name"
},
"device_type": {
"description": "The type of controlled device i.e. Phone or Extension Mobility Profile.",
"title": "Controlled Device Type",
"default": "Phone",
"required": true,
"choices": [
{
"value": "Phone",
"title": "Phone"
},
{
"value": "Extension Mobility",
"title": "Extension Mobility"
}
],
"type": "string"
},
"cucm_bkey": {
"required": false,
"type": "string",
"description": "Business Key of the CUCM.",
"title": "CUCM bkey"
}
}
}