This API is available for update the role. You can update role through the HTTP PUT method, URL http://<host>:<port>/catissuecore/rest/ng/roles/{roleId}
Below User this resource for update the role. Use HTTP PUT method to call this API by passing the below details in JSON format.
Below are the attributes which need to be sent in the request body:
Parameter | Details |
---|---|
name | Role Name, Cannot be changes once role has been created |
privilegeNames | Privilege names that comes under the role, permissible values are { User Provisioning, Storage Administration, Protocol Administration, Specimen Processing, Registration, Distribution, Read Denied } |
http[s]:<host>:<port>/catissuecore/rest/ng/users/{userId}
...
API Example
Use this URL to update role in caTissue application.
Result:
The response of this request will contains the details of the updated role.
Below is the example of the update role:
URL | http://<host>:<port>/ catissuecore/rest/ng/roles/{roleId} |
Method | PUT |
Request | application/json |
json | { "name":"Scientiest", "privilegeNames" : ["Protocol Administration", "Registration"] } |
Response | { "id" : "1", "name":"Scientiest", "privilegeNames" : ["Protocol Administration", "Registration"]
|
...