View to delete one or more users from a CUCM Call Pickup Group.
GET http://[host-proxy]/api/view/DeleteCucmCallPickupGroupAllMembers/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"
}
}
}