The participants export contains all the participants who have joined the projects.
Data Fields
Field | Description |
---|---|
ParticipantIdentifier |
A unique identifier for the participant in this project. This can be set up via the invitation sent to the user, or will be auto-generated if the identifier was not specified in the invitation. |
GlobalKey |
A global key for the participant which can be used to identify the participant across multiple projects. |
EmailAddress |
The email address of the participant. |
FirstName |
The first name of the participant. |
MiddleName |
The middle name of the participant. |
LastName |
The last name of the participant. |
Gender |
The gender of the participant. |
DateOfBirth |
The date of birth of the participant. |
SecondaryIdentifier |
The secondary identifier created for this participant if one was set up when they were invited. |
EnrollmentDate |
The date/time the participant enrolled in this project, in ISO 8601 format. |
CustomFields |
Lists any custom fields associated with the patient, formatted as a JSON string. For example: { "Medication1": "Warfarin","SurgeryDate": "2018-11-01" } |
EventDates |
Deprecated; participant events are now included in CustomFields. |
Sample CSV Export
ParticipantIdentifier,GlobalKey,EmailAddress,FirstName,MiddleName,LastName,Gender,DateOfBirth,SecondaryIdentifier,EnrollmentDate,EventDates,CustomFields
ba9c19c4-9938-420f-aba6-d6d6c88c6417,7bd77fae-ce35-44c9-a13a-cb6211006201,abc@example.com,John,,Smith,,1987-08-14,,2017-12-05T18:25:59Z,{},{"Medication1":"Wafarin"}
820c2f2d-43fc-47d2-a6a9-08886f5818ba,3c019e4f-e064-4055-9183-851488de3340,def@example.com,John,,Smith,,1998-01-12,,2018-01-29T15:58:19Z,{},{}
d30c9752-2da3-45a6-878a-757ea36252b4,92eb35d8-ed89-49c6-a17d-b64ad04859ca,ghi@example.com,John,,Smith,M,1987-08-14,,2018-03-22T21:41:28Z,{},{"DischargeDate":"2018-11-03","SurgeryDate":"2018-11-01"}
Sample JSON Export
{
"ParticipantIdentifier": "ba9c19c4-9938-420f-aba6-d6d6c88c6417",
"GlobalKey": "7bd77fae-ce35-44c9-a13a-cb6211006201",
"EmailAddress": "abc@example.com",
"FirstName": "John",
"LastName": "Smith",
"DateOfBirth": "1987-08-14",
"EnrollmentDate": "2017-12-05T18:25:59Z",
"EventDates": {},
"CustomFields": {
"Medication1": "Wafarin"
}
},
{
"ParticipantIdentifier": "820c2f2d-43fc-47d2-a6a9-08886f5818ba",
"GlobalKey": "3c019e4f-e064-4055-9183-851488de3340",
"EmailAddress": "def@example.com",
"FirstName": "John",
"LastName": "Smith",
"DateOfBirth": "1998-01-12",
"EnrollmentDate": "2018-01-29T15:58:19Z",
"EventDates": {},
"CustomFields": {},
},
{
"ParticipantIdentifier": "d30c9752-2da3-45a6-878a-757ea36252b4",
"GlobalKey": "92eb35d8-ed89-49c6-a17d-b64ad04859ca",
"EmailAddress": "ghi@example.com",
"FirstName": "John",
"LastName": "Smith",
"Gender": "M",
"DateOfBirth": "1987-08-14",
"EnrollmentDate": "2018-03-22T21:41:28Z",
"EventDates": {},
"CustomFields": {
"DischargeDate":"2018-11-03",
"SurgeryDate":"2018-11-01"
}
}