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": {
"title": "CUCM bkey",
"description": "Business Key of the CUCM.",
"type": "string"
},
"users": {
"title": "Users",
"description": "List of CUCM users.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"title": "Username",
"description": "CUCM username.",
"type": "string"
},
"line": {
"title": "Line",
"description": "CUCM Lines associated to the User",
"type": "string"
}
}
}
}
}
}