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 content. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

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

 

Below are the attributes which need to be sent in the request body:

Parameter
Details
nameRole Name
privilegeNamesPrivileges that comes under the role


API Example :

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", "Registeration"] 
}

 

 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
500All requestsInternal server error, Encountered server error while performing operations

 


   

  • No labels