View to add one or more users to one or more CUCM Hunt Groups. Please note that we refer to Hunt Group but it is actually called Line Group on CUCM.
GET http://[host-proxy]/api/view/AddCucmHuntGroupMember/schema/?hierarchy=[hierarchy]&format=json&schema=1
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"cucm_bkey": {
"type": "string",
"description": "Business Key of the CUCM.",
"title": "CUCM bkey"
},
"users": {
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "CUCM username.",
"title": "Username"
},
"line": {
"type": "string",
"description": "CUCM Lines associated to the User",
"title": "Line"
}
}
},
"type": "array",
"description": "List of CUCM users.",
"title": "Users"
},
"hunt_lists": {
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the CUCM Hunt List",
"title": "Hunt List Name"
},
"line_group": {
"type": "string",
"description": "CUCM Line Group",
"title": "Line Group"
}
}
},
"type": "array",
"description": "List of CUCM Hunt Lists",
"title": "Hunt Lists"
}
}
}