openspecimen/rest/ng/storage-containers
Use this resource to create new storage container in the open specimen application. Use HTTP POST 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 |
---|---|
name | Container Name. It should be unique in application |
barcode[Optional] | Container Barcode, By default it will be null. It should be unique in application if barcode is provided |
activityStatus | Activity Status of container. |
tempratureInCentigrade[Optional] | Temperature of storage container. By default it will be null. |
createdBy | User Info object containing loginName and domainName of user, who had been created the container. |
siteName | Site name in which the container is present. Either siteName or parentContainerName is mandatory. |
parentContainerName[Optional] | Parent container name. By default is will be null, Either siteName or parentContainerName is mandatory. |
holdsCPTitles[Optional] | Title of collection protocols to restrict specific protocol for storage |
holdsSpecimenTypes[Optional] | Specimen of specified types are allowed in container |
oneDimensionCapacity | Max capacity of dimension one eg.30 |
twoDimensionCapacity | Max capacity of dimension two eg.30 |
comments [optional] | Comments for container, By default it will be null |
oneDimentionLabelingScheme[Optional] | By Default it will be {Numbers, Alphabates Upper Case, Alphabates Lower Case, Roman Upper Case, Roman Lower Case} |
twoDimentionLabelingScheme[Optional] | By Default it will be {Numbers, Alphabates Upper Case, Alphabates Lower Case, Roman Upper Case, Roman Lower Case} |
http[s]:<host>:<port>/openspecimen/rest/ng/storage-containers
Use this URL to add storage container in open specimen application.
Result:
The response of this request will contains the details of the created storage container.
Below is the example of the create storage container:
URL | http://<host>:<port>/ catissuecore/rest/ng/storage-containers |
Method | POST |
Request | application/json |
json | { "name":"Container1", "barcode":"2-edpwesdadas-343", "activityStatus":"ACTIVE", "createdBy" : { "loginName" : "admin@admin.com", "domainName" :"catissue" }, "tempratureInCentigrade":22.22, "siteName":"My Site", "parentContainerName": "freezer", "holdsCPTitles":["Cp1","My CP"], "holdsSpecimenTypes" : ["blood","tissue"], "comments":"Blah blah blah", "oneDimensionCapacity":10, "twoDimensionCapacity":10 } |
Response | { "id" : 1, "name":"Container1", "barcode":"2-edpwesdadas-343", "activityStatus":"ACTIVE", "createdBy" : { "loginName" : "admin@admin.com", "domainName" :"catissue" }, "tempratureInCentigrade":22.22, "siteName":"My Site", "parentContainerName": "freezer", "holdsCPTitles":["Cp1","My CP"], "holdsSpecimenTypes" : ["blood","tissue"], "comments":"Blah blah blah", "oneDimensionCapacity":10, "twoDimensionCapacity":10, "oneDimentionalLabellingScheme ": "numbers", "twoDimentionalLabellingScheme ": "numbers" } |
Error Cases :
code | Applies to | Status Message |
---|---|---|
200 | All resources | Storage Container has been created successfully |
400 | All requests | Invalid parameters, e.g duplicate Container Name, blank Container Name etc |
401 | All requests | Authorization failed, User doesn’t have Authority |
500 | All requests | Internal server error, Encountered server error while performing operations |