You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 12
Next »
openspecimen/rest/ng/collection-protocols
Use this resource to create new collection protocol in the openSpecimen 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:
| |
---|
title | Collection protocol title. Should be unique in the application |
shortTitle | Collection protocol short title. Should be unique in the application |
code[optional] | Collection protocol code |
startDate[optional] | Collection protocol starting date |
endDate[optional] | Collection protocol end date. If given then, the endDate should be later than start date. |
principalInvestigator | Principal investigator of CP Mainly contains following parameters : loginName : User login name. For this specified user must be present in application. domainName: Name of domain to which user belongs to. By default it will be catissue. |
coordinators [optional] | Collection of coordinators. It is collection of user info mainly contains following parameters : loginName : User login name. For this specified user must be present in application. domainName: Name of domain to which user belongs to. By default it will be catissue. |
irbId[optional] | Ethics approval id |
anticipatedParticipantsCount[optional] | Anticipated participants count |
activityStatus | Activity status of a collection protocol |
visitNameFmt[optional] | Visit name format |
specimenLabelFmt[optional] | Specimen label format |
derivedLabelFormat[optional] | Derived label format |
aliquotLabelFormat[optional] | Aliquot label format |
ppIdFormat[optional] | PPId format |
events[optional] | It is collection of collection protocol event details Mainly contains following parameters : collectionPointLabel | Collection point label. It should be unique in CP | studyCalendarEventPoint[optional] | Study calendar event point | labelFormat[optional] | Collection protocol event label format | activityStatus | Activity status of collection protocol event | defaultSiteName [optional] | Site name | specimenRequirementDetails [optional] | It is collection of specimen requirement details Mainly contains following parameters : collectionTimestamp [optional] | Collection timestamp | collector [optional]
| Collector of specimen Mainly contains following parameters : loginName : User login name. For this specified user must be present in application. domainName: Name of domain to which user belongs to. By default it will be catissue. | collectionComments[optional] | Comments while collecting specimen | collectionProcedure[optional] | Collection procedure | collectionContainer[optional] | Collection container | receivedQuality[optional] | Received quality | receivedTimestamp[optional] | Received Timestamp | receiver[optional] | Receiver of specimen Mainly contains following parameters : loginName : User login name. For this specified user must be present in application. domainName: Name of domain to which user belongs to. By default it will be catissue. | receivedComments[optional] | Comments while receiving specimen | childSpecimenRequirementCollection[optional] | Collection of the child specimen requirements | tissueSite[optional] | Tissue site | tissueSide[optional] | Tissue side | pathologicalStatus[optional] | Pathological Status | lineage[optional] | Lineage, Should be New if the specimen requirement doesn't have parrent | initialQuantity[optional] | Initial quantity | specimenClass[optional] | Specimen class | specimenType[optional] | Specimen type | labelFormat[optional] | Label format for specimen requirement | specimenRequirementLabel[optional] | Label for specimen requirement | activityStatus[optional] | Activity status of specimen requirement |
|
|
cpSites | It is collection of Sites. Mainly contains following parameters : siteName: Site name. For this attribute Site must be present in application. code[optional]: Site code |
manualPpidEnabled[optional] | User inputs allowed for ppid |
manualVisitNameEnabled[optional] | User inputs allowed for visit name |
manualSpecLabelEnabled[optional] | User inputs allowed for specimen label |
http[s]:<host>:<port>/openspecimen/rest/ng/collection-protocols
Use this URL to add collection protocol in openSpecimen application.
Result:
The response of this request will contains the details of the created collection protocol.
Below is the example of the create collection protocol:
URL | http://<host>:<port>/ openspecimen/rest/ng/collection-protocols |
Method | POST |
Request | application/json |
json | { "id": 2, "shortTitle": "A Planned Clinical Study FD", "title": "Planned Clinical Study", "code": null, "principalInvestigator": { "loginName": "admin@admin.com", "domain": "openspecimen" }, "startDate": 1427653800000, "endDate": 1454178600000, "participantCount": null, "specimenCount": null, "ppidFmt": "DWP%05d", "manualPpidEnabled": false, "coordinators": [ ], "cpSites": [ { "siteName": "Arkansas Repository", "code": "CS_123" }, { "siteName": "Arkansas Hospital", "code": "CS_34" } ], "consentsWaived": false, "irbId": "65465", "anticipatedParticipantsCount": null, "descriptionUrl": null, "specimenLabelFmt": "%PPI%.%SP_TYPE%.%SYS_UID%", "derivativeLabelFmt": "%PPI%.%SP_TYPE%.%SYS_UID%", "aliquotLabelFmt": "%PSPEC_LABEL%.%PSPEC_UID%", "visitNameFmt": null, "manualVisitNameEnabled": false, "manualSpecLabelEnabled": true, "aliquotsInSameContainer": null, "activityStatus": "Active" } |
Response | { "id": 2, "shortTitle": "A Planned Clinical Study FD", "title": "Planned Clinical Study", "code": null, "principalInvestigator": { "id": 1, "firstName": "Admin", "lastName": "Admin", "loginName": "admin@admin.com", "domain": "openspecimen", "emailAddress": "openspecimendemo@gmail.com", "admin": true, "cpCount": 0, "creationDate": null }, "startDate": 1427653800000, "endDate": 1454178600000, "participantCount": null, "specimenCount": null, "ppidFmt": "DWP%05d", "manualPpidEnabled": false, "coordinators": [ ], "cpSites": [ { "id": 2, "siteName": "Arkansas Repository", "code": "CS_123" }, { "id": 25, "siteName": "Arkansas Hospital", "code": "CS_34" } ], "consentsWaived": false, "irbId": "65465", "anticipatedParticipantsCount": null, "descriptionUrl": null, "specimenLabelFmt": "%PPI%.%SP_TYPE%.%SYS_UID%", "derivativeLabelFmt": "%PPI%.%SP_TYPE%.%SYS_UID%", "aliquotLabelFmt": "%PSPEC_LABEL%.%PSPEC_UID%", "visitNameFmt": null, "manualVisitNameEnabled": false, "manualSpecLabelEnabled": true, "aliquotsInSameContainer": null, "activityStatus": "Active", "consents": null, "events": null }
|
Error Cases :
| | |
---|
200 | All resources | Collection Protocol has been created successfully |
400 | All requests | Invalid parameters, e.g duplicate CP title, blank CP title etc |
401 | All requests | Authorization failed, user doesn’t have authority |
500 | All requests | Internal server error, encountered server error while performing operations |