[Legacy] Notifications Data Export Format
- Updated
Please note that the Notifications Data Export is a legacy export and we recommend using the Analytics Events exports. This article should only be used for legacy exports, created prior to 14-April-2022.
The notifications export contains a record of notifications delivered to participants.
Table of Contents
Data Fields
Field | Description |
---|---|
ID |
A unique identifier for the notification delivery. |
ParticipantIdentifier |
The MyDataHelps identifier of the participant. Can be used to cross reference with Participants. |
Date |
The date the notification was sent, in ISO 8601 format. |
Identifier |
The workspace-specific identifier of the notification that was sent. This is the identifier shown on the Notifications screen. |
StatusCode |
Status of the delivery. This will be "Succeeded" if the notification was successfully delivered, or it will indicate the problem (e.g., "MissingContactInfo"). |
Sample CSV Export
ID,ParticipantIdentifier,Date,Identifier,StatusCode
e940a2a3-aaeb-ea11-aa9c-0afb9334277d,aaaa-bbbb-cccc-dddd,2020-08-31T16:54:35,SLEEP-HealthTip-Email,Succeeded
20ff614a-9bf3-ea11-aa9c-0afb9334277d,1111-2222-3333-4444,2020-09-10T19:24:52,SLEEP-Reminder-SMS,MissingContactInfo
Sample JSON Export
{
"ID": "e940a2a3-aaeb-ea11-aa9c-0afb9334277d",
"ParticipantIdentifier": "aaaa-bbbb-cccc-dddd",
"Date": "2020-08-31T16:54:35",
"Identifier": "SLEEP-HealthTip-Email",
"StatusCode": "Succeeded"
}
{
"ID": "20ff614a-9bf3-ea11-aa9c-0afb9334277d",
"ParticipantIdentifier": "1111-2222-3333-4444",
"Date": "2020-09-10T19:24:52",
"Identifier": "SLEEP-Reminder-SMS",
"StatusCode": "MissingContactInfo"
}
Was this article helpful?