Leave a comment at the end of this page or email contact@krishagni.com
Get Site
openspecimen/rest/ng/sites/{id}
or
openspecimen/rest/ng/sites/byname?name={name}
Use this resource to get site in the OpenSpecimen application. This API returns site 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 |
---|---|
id | Site id to fetch the site. |
name | Site name to fetch the site. |
http[s]:<host>:<port>/openspecimen/rest/ng/sites/{id}
or
http[s]:<host>:<port>/openspecimen/rest/ng/sites/byname?name={name}
Use this URL to get site by an id in openSpecimen application.
Result:
The response of this request will contains the details of the site.
Below is the example of the get site :
URL |
or
|
Method | GET |
Request | application/json |
Response | { "id": 20, "name": "CHMCA", "instituteName": "Stanford", "code": null, "type": "Repository", "activityStatus": "Active", "cpCount": 0, "coordinators": [ { "id": 95, "firstName": "admin", "lastName": "admin", "loginName": "admin@admin.com", "domain": "openspecimen", "emailAddress": "admin@admin.com", "admin": true, "cpCount": 0, "creationDate": 1436898600000 } ], "address": null, "extensionDetail": null } |
Error Cases :
code | Applies to | Status Message |
---|---|---|
200 | All resources | Site got successfully |
401 | All requests | Authorization failed, user doesn’t have authority |
500 | All requests | Internal server error, encountered server error while performing operations |
Leave a comment at the end of this page or email contact@krishagni.com