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": {
"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"
}
}
}
}
}
}