Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

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 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 }


API Example :

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

Response

{

    "id" : "1",

    "name":"Scientiest",

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

 

 

Error Cases :

code
Applies to
Status Message
200All resourcesRole has been created successfully
400All requestsInvalid parameters, e.g  duplicate Role Name, blank Role Name etc
401All requestsAuthorization failed, User doesn’t have Authority
404All requestsRole not found, Role with given details not present in the system
500All requestsInternal server error, Encountered server error while performing operations

 

 

  • No labels