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 6 Next »

openspecimen/rest/ng/users

or

openspecimen/rest/ng/users?start={start}&max={maxResults}&searchString={searchString}&countReq={true/false}

Use this resource to get users. This API returns all the matching users based on the searchString,  if searchString not specified then it returns all the users present in the openSpecimen application.

Use HTTP GET 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
searchStringThe value with which you want to search the User. The given value will be matched with First Name, Last Name, Login Name, Email Address, Identifier.
startstart index of the results
maxResultsMaximum number of records to fetch. By default it will be 50
countReqSet this parameter to true, if want to get the total count of matching results.


http[s]:<host>:<port>/openspecimen/rest/ng/users

 

Use this URL to get users in openSpecimen application.

Result:

The response of this request will contains the details of the users.

Below is the example of the get users:

URLhttp://<host>:<port>/openspecimen/rest/ng/users?searchString=Piterson
MethodGET
Requestapplication/json

Response

[{

    "id" : "1",
    "lastName":"Piterson",
    "firstName":"Sam",
    "loginName":"samPiterson"

}]

 

 

Error Cases :

code
Applies to
Status Message
200All resourcesUsers got successfully
401All requestsAuthorization failed, user doesn’t have authority
500All requestsInternal server error, encountered server error while performing operations
  • No labels