array usergroup.getobjects(object filter)
This method allows to retrieve user groups that match the given filter criteria.
This method is deprecated and will be removed in the future. Please use usergroup.get instead.
(object)
Criteria to search by.
Additionally to the standard standard user group properties the following parameters are supported as search criteria.
Parameter | Type | Description |
---|---|---|
name | string | Name of the user group. |
(array)
Returns an array of objects with all properties.
Retrieve all data about the user group "Zabbix administrators".
Request:
{
"jsonrpc": "2.0",
"method": "usergroup.getobjects",
"params": {
"name": "Zabbix administrators"
},
"auth": "3a57200802b24cda67c4e4010b50c065",
"id": 1
}
Response:
{
"jsonrpc": "2.0",
"result": [
{
"usrgrpid": "7",
"name": "Zabbix administrators",
"gui_access": "0",
"users_status": "0",
"debug_mode": "1"
}
],
"id": 1
}
CUserGroup::getObject() in frontends/php/include/classes/api/services/CUserGroup.php.