Versions Compared

Key

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

This API available for creating new role. You can create role through the HTTP POST method, URL  http://<host>:<port>/catissuecore/rest/ng/roles

Use this resource to create new role in the caTissue application. Use HTTP POST 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
privilegeNames

Privilege names that comes under the role, permissible values are

{ User Provisioning, Storage Administration, Protocol Administration, Specimen Processing, Registration, Distribution, Read Denied }


API Example http[s]:<host>:<port>/catissuecore/rest/ng/roles

Use this URL to add role in caTissue application.

Result:

The response of this request will contains the details of the created role.

Below is the example of the create role:

URLhttp://<host>:<port>/catissuecore/rest/ng/roles
MethodPOST
Requestapplication/json
json{
    "name":"Scientiest",
    "privilegeNames" : ["User Provisioning", "Registration"]
}

Response

{

    "id" : "1",

    "name":"Scientiest",

    "privilegeNames" : ["User Provisioning", "Registration"] 
}

 

...