Created 09-13-2017 03:05 AM
Hi,
Please help me if any one tried adding new user to cloudera Manager using REST API calls ?
I heard the option /api/v10/users/userList has some option , please let me know if anyone tried this option ?
Regards,
Sijeesh
Created 09-13-2017 10:25 PM
Created 09-13-2017 10:25 PM
Created 09-14-2017 05:05 AM
Created 07-12-2018 03:22 AM
what is the parameter to give full admin access to specific user using this API
Created 07-12-2018 10:11 AM
You can use this endpoint:
https://cloudera.github.io/cm_api/apidocs/v19/path__users_-userName-.html
using the PUT method via REST API allows you to update the user object defined here:
https://cloudera.github.io/cm_api/apidocs/v19/ns0_apiUser.html
For example, the following would make an existing user "mytestuser" a full administrator in CM 5.15 (you would need to use the api version that is right for your CM version):
curl -u cm_user:cm_pass -H "Content-Type: application/json" -X PUT -d '{"roles" : [ "ROLE_ADMIN"]}' http://cm_host:7180/api/v19/users/mytestuser