Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

openspecimen/rest/ng//collection-protocol-registrations?cpId={collection-protocol-Id}

or

openspecimen/rest/ng/collection-protocol-registrations?cpId={collectionProtocolId}&registrationDate={registraitonDate}&name={paritcipantName}&query={searchString}&ppid={participantProtocolId}&uid={participantUniqueIdentifier}&participantId={masterPatientIndex}&empi={masterPatientIndex}&dob={dateOfBirth}&specimen={specimenLabel}&startAt={startAt }&max={maxResults }&includeStats={true/false}&exactMatch={true/false}

Use this resource to get participant registration details for a given protocol. This API returns all the matching participant registration details based on the searchString,  if searchString not specified then it returns all the registrations for a given collection protocol.

Use HTTP GET method to call this API by passing the below request parameters.

 

Below are the attributes which need to be sent in the request body:

Parameter
Details
collectionProtocolId[mandatory]The collection protocol identifier for which the participant registrations to be searched.
searchStringThe value with which you want to search the participant registration. The given value will be matched with PPID, firstName, lastName
registraitonDateParticipant registration date
paritcipantNameThis parameter will be used to match on the basis of firstName and lastName of the participant
participantProtocolIdMatched with the protocol participant Id
participantUniqueIdentifierMatched with the unique identifier of the patient
masterPatientIndexMatched with Medical record number, participant unique identifier and master patient index
masterPatientIndexMatched with master patient index
dateOfBirthMatched with participants date of birth
specimenDetailsMatched with specimen label and barcode
startAt start index of the results
maxResultsMaximum number of records to fetch. By default it will be 1000
includeStatsTo specify whether to include statistics like visits count, specimens count etc
exactMatchFlag to specify whether to perform exact match or not.

 

Result:

The response of this request will contains the details of the collection protocols.

Below is the example of the get all collection protocols:

...


ItemValue
HTTP MethodPOST
URL/rest/ng/collection-protocol-registrations
?cpId=1&ppid=LS11&includeStats=trueMethodGETRequestapplication/json

Response

[
/list
Request Body


Code Block
languagejs
themeEclipselinenumberstrue
{
  
{
"cpId": <collection protocol 
ID>,
  "
participant
registrationDate":
{
 <registration date>,
  
"
id
ppid":
13
 <ppid>,
  "externalSubjectIds":[ <Comma separated 
"firstName":"tim",
values of external subject identifiers> ],
  "
lastName
name":
null,
 <participant first name or last name>
  "
empi
dob":
null,
 <birth date>,
  
"
uid
participantId":
null
 <MRN or eMPI orSSN 
},
or any national ID>,
  "
cprId
specimen"
:13,
 <specimen label 
"registrationDate":1444622400000,
or barcode>,
  
"
ppid
includeStats":
"LS11"
 <true|false>,
  
"
cpShortTitle
startAt":
"test
 
protocol",
<startAt | 0>,
  "
scgCount
maxResults":
1,
 <maxResults | 
"specimenCount":3 } ]

 

 

Error Cases :

code
Applies to
Status Message
200All resourcesCollection protocols registration got successfully401All requestsAuthorization failed, user doesn’t have authority500All requestsInternal server error, encountered server error while performing operations
100>
}


Response BodyList of registered participants that match the query criteria.


Parameters:

Parameter
Details
cpIdID of the collection protocol whose participants are to be returned.
registrationDateList of participants registered to the CP on date specified by this parameter value.
nameParticipants whose first name or last name contains this parameter value as a substring.
ppidMatches participants by PPID. Exact or substring match is specified by exactMatch parameter.
externalSubjectIdsMatches participants by external subject ID. Need to specify an array of external subject IDs. e.g. "externalSubjectIds":["KW001"]
participantIdParticipants whose UID / eMPI / MRN contains this parameter value as a substring.
dobParticipants whose birth date is on the date specified by this parameter value.
specimenParticipants whose specimen labels or barcodes contains this parameter value as a substring.
startAt startAt and maxResults are useful in implementing pagination of participants list. When not specified, startAt defaults to 0. When startAt = n, the first element of the response is (n + 1)th participant satisfying the query criteria.
maxResults

startAt and maxResults are useful in implementing pagination of participants list. This parameter specifies how many participant records should be included in the API response. When not specified, maxResults defaults to 100. 

When startAt = n and maxResults = 25, then the API response includes participants (n + 1), (n + 2), ... (n + 25) of the participants list sorted by their database generated registration IDs.

includeStatsBoolean specifying whether participant statistics like visits, specimens count should be included in the response
exactMatch

Specifies whether the PPID should be exact match or sub-string match. Boolean true means exact match. Otherwise it is substring match.


Given below is an example of API call request body to retrieve first 25 participants whose name is "John" registered to the collection protocol with ID = 16.

Code Block
POST <app-url>/rest/ng/collection-protocol-registrations/list
{
  "cpId": 16,
  "name": "john",
  "startAt": 0,
  "maxResults": 25
}