object userdirectory.update(object/array userDirectory)
This method allows to update existing user directories.
This method is only available to Super admin user type.
(object/array)
User directory properties to be updated.
The userdirectoryid
property must be defined for each user directory, all other properties are optional. Only the passed properties will be updated, all others will remain unchanged.
(object)
Returns an object containing the IDs of the updated user directories under the userdirectoryids
property.
Set new bind password for a user directory.
{
"jsonrpc": "2.0",
"method": "userdirectory.update",
"params": {
"userdirectoryid": "3",
"bind_password": "newldappassword"
},
"id": 1
}
Response:
Update provisioning groups mappings and media type mappings for user directory "2".
{
"jsonrpc": "2.0",
"method": "userdirectory.update",
"params": {
"userdirectoryid": "2",
"provision_media": [
{
"name": "example.com",
"mediatypeid": "1",
"attribute": "[email protected]"
}
],
"provision_groups": [
{
"name": "Zabbix administrators",
"roleid": "2",
"user_groups": [
{
"usrgrpid": "7"
},
{
"usrgrpid": "8"
},
{
"usrgrpid": "11"
}
]
}
]
},
"id": 1
}
Response:
CUserDirectory::update() in ui/include/classes/api/services/CUserDirectory.php.