View to delete 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/DeleteCucmHuntGroupMember/schema/?hierarchy=[hierarchy]&format=json&schema=1
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"hunt_lists": {
"items": {
"type": "object",
"properties": {
"line_group": {
"type": "string",
"description": "CUCM Line Group",
"title": "Line Group"
},
"name": {
"type": "string",
"description": "Name of the CUCM Hunt List",
"title": "Hunt List Name"
}
}
},
"type": "array",
"description": "List of CUCM Hunt Lists",
"title": "Hunt Lists"
},
"cucm_bkey": {
"type": "string",
"description": "Business Key of the CUCM.",
"title": "CUCM bkey"
},
"users": {
"items": {
"type": "object",
"properties": {
"line": {
"type": "string",
"description": "CUCM Lines associated to the User",
"title": "Line"
},
"name": {
"type": "string",
"description": "CUCM username.",
"title": "Username"
}
}
},
"type": "array",
"description": "List of CUCM users.",
"title": "Users"
}
}
}