Got feedback or spotted a mistake?

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

Update Role

openspecimen/rest/ng/roles/{roleId}

Use 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
privilegeNames

Privilege names that comes under the role, permissible values are

{ User Provisioning, Storage Administration, Protocol Administration, Specimen Processing, Registration, Distribution, Read Denied }
description[optional]Description for role, By default it will be null


http[s]:<host>:<port>/openspecimen/rest/ng/roles/{roleId}

Use this URL to update role in openSpecimen 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>/openspecimen/rest/ng/roles/{roleId}
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

 

 

Got feedback or spotted a mistake?

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