View to delete one or more users from all 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/DeleteCucmHuntGroupAllMembers/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": {
"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"
}
}
}