Notification from External Application for Participant Registration :-
1) Register new participant
Method | URL |
---|---|
POST | catissuecore/rest/ng/notifications/ |
Request | application/json |
json | { "ppId": "1234", "gender": "Male Gender", "enrollmentDate": "2014-01-01", "birthDate": "1989-02-06", "studyId": "CS1", "appName": "OpenClinica" } |
Response | { status: "OK" message: "Participant registered successfully" exception: null erroneousFields: null cprDetail: { ppId: "1234", gender:"Male Gender", enrollmentDate: "2014-01-01", birthDate: "1989-02-06", studyId: "CS1", appName: "OpenClinica" } } |
2) Update Participant Registration
...
{
"ppId": "1234",
"gender": "Female Gender",
"enrollmentDate": "2014-29-12",
"birthDate": "1989-02-06",
"studyId": "CS1",
"appName": "Mirth"
}
...
{
status: "OK"
message: "Participant registered successfully"
exception: null
erroneousFields: null
cprDetail: {
ppId: "1234",
gender:"Male Gender",
enrollmentDate: "2014-29-12",
birthDate: "1989-02-06",
studyId: "CS1",
appName: "OpenClinica"
}
...
List of API's available of notifications from External Applications
- Participant Registration From External Applications
- Update Participant Registration From External Applications