...
You can register participant from external applications through PUT URL URL
http://<host>:<port>/catissuecore/rest/ng/notifications/registration
...
Parameter | Description |
---|---|
ppId | Unique identifier for participant registered for collection protocol. PPId is key of participant integration between caTissue Plus and external app. It is mandatory parameter. |
birthDate | Date of birth of participant. |
gender | Gender of participant. |
enrollmentDate | Date of participant getting register.It is mandatory parameter. |
studyId | External application study identifier. It is mandatory parameter. |
appName | External Application Name to which caTissue Plus is integrated. It is mandatory parameter. |
API Example :
...
URL | PUT | http://<host>:<port>/catissuecore/rest/ng/notifications/registration |
Request | application/json | |
Method | PUT | |
json | { "ppId": "1234", "gender": "Female Gender", "enrollmentDate": "2014-29-12", "birthDate": "1989-02-06", "studyId": "CS1", "appName": "Mirth" } | |
Response | { } |
...