...
openspecimen/rest/ng/users?start={start}&max={maxResults}&searchString={searchString}&countReq={true/falsename={name}&loginName={loginName}&institute={institute}&activityStatus={activityStatus}&site={siteName}
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 | |
---|---|---|
start [optional] | start index of the results | |
maxResults [optional] | Maximum number of records to fetch. By default it will be 50 | |
searchString [optional] | The 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. | |
start [optional] | start index of the results | |
maxResults [optional] | Maximum number of records to fetch. By default it will be 50 | |
countReq [optional] | Set this parameter to true, if want to get the total count of matching results.name | The value given will be matched with First Name, and Last name of the user |
loginName | The given value will be matched with loginName of the user | |
institute | Result contains the users which belongs to given institute | |
activityStatus | Result contains the users which have given activityStatus | |
site | Site name, result contains users which belongs to given institute |
http[s]:<host>:<port>/openspecimen/rest/ng/users
Use this URL to get users in openSpecimen application.
...
URL | http://<host>:<port>/openspecimen /rest/ng/users?searchString=Pitersonadmin | ||||||||||
Method | GET | ||||||||||
Request | application/json | ||||||||||
Response |
"firstName":"Sam", "loginName":"samPiterson" }]
|
...
|
Error Cases :
code | Applies to | Status Message |
---|---|---|
200 | All resources | Users got successfully |
401 | All requests | Authorization failed, user doesn’t have authority |
500 | All requests | Internal server error, encountered server error while performing operations |
...