View to delete one or more users from a CUCM Call Pickup Group.
GET http://[host-proxy]/api/view/DeleteCucmCallPickupGroupMember/schema/?hierarchy=[hierarchy]&format=json&schema=1
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"call_pickup_group": {
"type": "string",
"description": "Name of the CUCM Call Pickup Group",
"title": "Call Pickup Group Name"
},
"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"
}
}
}