Category / Section
Send Activities from Zuddl to Iterable
Published:
9 mins read
Updated:
In addition to the Registered and Attended activities which are passed to your Iterable dashboard by default, you can choose to pass custom activities specific to your event, such as attendee status, time spent details, polls answered, questions upvoted, etc. By default all custom activities are toggled on.
- Under Activities, toggle on the activities you want to capture and pass to your Iterable account. By default, all toggles are turned on by default.
Registered and Attended activities are captured by default and they cannot be turned off.
Viewing engagement data on Iterable
To view the captured engagement data on Iterable, you need to access the users profile.
- Go to Audience > Contact lookup.
- Enter the user's email address in the search box and click Search users.
- In the user profile page, click History under Events.
- In the Event history table, you can view the 'Zuddl_Event_Engagement' custom event.
Sample JSON payload
The sample payload in JSON for Zuddl_Event_Engagement custom event is shown below:
Attended Session Live
{
"EventId": "2db2c8ec-427f-42ae-8cb5-2c41e4ee4513",
"EventName": "Test Iterable integration registration fields",
"Activity": "Attended Session Live",
"AttendedSessionLive": {
"SessionName": "Session Name",
"SessionTags": ["tag1", "tag2"]
}
}
Attended Booth
{
"EventId": "2db2c8ec-427f-42ae-8cb5-2c41e4ee4513",
"EventName": "Test Iterable integration registration fields",
"Activity": "Attended Booth",
"AttendedBooth": {
"BoothName": "Booth Name",
}
}
Attended Discussion Room
{
"EventId": "2db2c8ec-427f-42ae-8cb5-2c41e4ee4513",
"EventName": "Test Iterable integration registration fields",
"Activity": "Attended Booth",
"AttendedDiscussionRoom": {
"RoomName": "Room Name",
}
}
Poll Answered
{
"EventId": "2db2c8ec-427f-42ae-8cb5-2c41e4ee4513",
"EventName": "Test Iterable integration registration fields",
"Activity": "Poll Answered",
"PollAnswered": {
"PollQuestion": "poll question",
"PollAnswer": "Poll Answer",
"Zone": "Stage"
}
}
Question Asked
{
"EventId": "2db2c8ec-427f-42ae-8cb5-2c41e4ee4513",
"EventName": "Test Iterable integration registration fields",
"Activity": "Question Asked",
"QuestionAsked": {
"QuestionAsked": "question asked?",
"Zone": "Stage"
}
}
Question Upvoted
{
"EventId": "2db2c8ec-427f-42ae-8cb5-xxxxxxxxx",
"EventName": "Test Iterable integration registration fields",
"Activity": "Question Upvoted",
"QuestionUpvoted": {
"QuestionUpvoted": "question asked?",
"Zone": "Stage"
}
}
CTA Clicked
{
"EventId": "2db2c8ec-427f-42ae-8cb5-xxxxxxxxx",
"EventName": "Test Iterable integration registration fields",
"Activity": "CTA Clicked",
"CTAClicked": {
"CTAName": "CTA Name",
"CTALink": "https://www.google.com",
"CTAType": "BUTTON",
"Zone": "Stage"
}
}
Survey Answered
{
"EventId": "2db2c8ec-427f-42ae-8cb5-xxxxxxxxx",
"EventName": "Test Iterable integration registration fields",
"Activity": "Survey Answered",
"SurveyAnswered": {
"SurveyName": "Survey Name",
"SurveyQuestion": "Survey Question",
"SurveyResponse": "Survey Response",
"Zone": "Stage"
}
}
VOD View
{
"EventId": "2db2c8ec-427f-42ae-xxxxxxxxx",
"EventName": "Test Iterable integration registration fields",
"Activity": "VOD View",
"VODView": {
"VideoName": "Video Name",
"MinutesWatched": 10,
"PercentageWatched": 20,
"WatchCount": 5
}
}
Engagement Time
{
"EventId": "2db2c8ec-427f-42ae-8cb5-xxxxxxxxx",
"EventName": "Test Iterable integration registration fields",
"Activity": "Engagement Time",
"EngagementTime": {
"TotalTimeSpentInMinutes": 20,
}
}
Session Engagement Time
{
"EventId": "2db2c8ec-427f-42ae-8cb5-xxxxxxxxx",
"EventName": "Test Iterable integration registration fields",
"Activity": "Session Engagement Time",
"SessionEngagementTime": {
"SessionName": "Session Name",
"TimeSpentInMinutes": 20,
}
}
Discussion Room Engagement Time
{
"EventId": "2db2c8ec-427f-42ae-8cb5-xxxxxxxxx",
"EventName": "Test Iterable integration registration fields",
"Activity": "Discussion Room Engagement Time",
"DiscussionRoomEngagementTime": {
"TotalTimeSpentInMinutes": 20,
}
}
Booth Engagement Time
{
"EventId": "2db2c8ec-427f-42ae-8cb5-xxxxxxxxx",
"EventName": "Test Iterable integration registration fields",
"Activity": "Booth Engagement Time",
"BoothEngagementTime": {
"TotalTimeSpentInMinutes": 20,
}
}
Object | Description |
---|---|
EventId | The unique ID of the event |
EventName | The name of the event |
Activity | The name of the activity such as Attended Booth, Poll Answered, etc. |
AttendedSessionLive | The JSON object that shows session name and session tags. The session tags are listed as array elements |
BoothName | Name of the booth in an Attended Booth activity |
AttendedDiscussionRoom | The JSON activity object that shows Room name of the discussion room |
PollAnswered | The JSON activity object that shows
|
Zone | The venue in Zuddl where the activity occured |
QuestionUpvoted | The JSON activity object that shows the upvoted question by the attendee |
CTAClicked | The JSON activity object that shows
|
SurveyAnswered | The JSON activity object that shows:
|
VODView | The JSON activity object that shows
|
EngagementTime | The JSON activity object that shows Total Time Spent in Minutes by the attendee in event activities |
SessionEngagementTime | The JSON activity object that shows Session Name and the Time Spent in Minutes by the attendee in the session |
DiscussionRoomEngagementTime | The JSON activity object that shows the Total Time Spent in Minutes by the attendee in the discussion room |
BoothEngagementTime | The JSON activity object that shows the Total Time Spent in Minutes by the attendee in the booth |