...
Use this resource to retrieve an existing container type details in the OpenSpecimen application. Use HTTP GET method to call this API.
http[s]:<host>:<port>/openspecimen/rest/ng/container-types/{container_type_id}
Use this URL to retrieve the container type for the given identifier.
Result:
URL | http://<host>:<port>/ openspecimen/rest/ng/container-types/1 |
Method | GET |
Request | application/json |
Response | Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
linenumbers | true |
---|
| {
"id": 1,
"name": "Freezer",
"nameFormat": "F-%SITE_UID%",
"noOfColumns": 5,
"noOfRows": 5,
"columnLabelingScheme": "Numbers",
"rowLabelingScheme": "Numbers",
"temperature": -80,
"storeSpecimenEnabled": false,
"activityStatus": "Active",
"canHold": {
"id": 2,
"name": "Rack",
"nameFormat": "%PCONT_NAME%-RK-%PCONT_UID%",
"noOfColumns": 10,
"noOfRows": 10,
"columnLabelingScheme": "Numbers",
"rowLabelingScheme": "Numbers",
"temperature": -90,
"storeSpecimenEnabled": true,
"activityStatus": "Active"
}
} |
|