Versions Compared

Key

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

...

You can register participant from external applications through PUT URL

 http://<host>:<port>/catissuecore/rest/ng/notifications/registration

Parametere Parameter Details : 

Update Participant Registration REST API takes following parameters through json request

 

ParameterDescription
ppId

Protocol Participant Identifier is a 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 [optional]Date of birth of participant.
gender [optional]Gender of participant.
enrollmentDateDate of on which participant getting register.It is mandatory parameterregistered.
studyIdExternal application study identifier . It is mandatory parameterto which collection protocol is mapped.
appNameExternal Application Name to which caTissue Plus is integrated. It is mandatory parameter.

Result :

Result contains status of update participant registration.if status is OK then also contains collection protocol registration details.Result also contains message and erroneous fields if update fails.

...

URLhttp://<host>:<port>/catissuecore/rest/ng/notifications/registration
Requestapplication/json
MethodPUT
json

{

    "ppId": "1234",

    "gender": "Female Gender",

    "enrollmentDate": "2014-29-12",

    "birthDate": "1989-02-06",

    "studyId": "CS1",

    "appName": "MirthOpenClinica"

}

Response

{    

    "status": "OK",

    "message": "Participant registration updated successfully",

    "exception": null,

    "erroneousFields": null,

    "cprDetail" :

    {

        "id":101,

        "cpId":501,

        "ppId": "1234", gender:"Male Gender", enrollmentDate",

            "barCode":"111111",

        "activityStatus": "Active",

        "registrationDate": "2014-29-12", birthDate: "1989-02-06", studyId: "CS1", appName: "OpenClinica"

        "participantDetail":

        [

            {

                "activityStatus" : "Active",

                "ethnicity" : "Unknown",

                "firstName" : "Jhon",

                "lastName" : "Dep",

                "gender" : "Female Gender",

                "id" : "1",

                "pmiCollection" :

                [

                    {

                        "mrn" : "324r6",

                        "siteName" : "Lab2"

                    }

                ],

                "race" : [ "Asian" ],

                "ssn" : "123-45-6789"

            }

            ]

    }

}

Response Status :

code
Applies to
Status Message
200All resourcesParticipant registration updated successfully
400All requestsInvalid parameters, e.g  duplicate ppId, invalid studyId, invalid applicationName etc
401All requestsAuthorization failed, User doesn’t doesn't have Authority to update participant registration for the given collection protocol
500All requestsInternal server error, Encountered server error while performing operations