Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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
nameRole 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:

URLhttp://<host>:<port>/catissuecore/rest/ng/roles/{roleId}
MethodPUT
Requestapplication/json
json{
    "name":"Scientiest",
    "privilegeNames" : ["Protocol Administration", "Registration"]
}

Response

{

    "id" : "1",

    "name":"Scientiest",

    "privilegeNames" : ["Protocol Administration", "Registration"] 
}

 

...