Trivia events
Note: The event name you will see in GTM, Segment, and analytics tools is the value in the code block below (e.g.,
card-answered
). The section titles are for human readability.
Live trivia started
Event name in GTM: card-started
Raised when a user starts a live trivia game.
{
"siteId": "string", // The unique site ID
"userId": "string", // The unique user ID
"cardId": "string", // The unique card ID (Trivia)
"cardType": "string", // The card type (Trivia)
"cardName": "string", // The card name
"gameplayId": "string" // The gameplay session ID
}
Live trivia question answered
Event name in GTM: card-answered
Raised when a user answers a question during a live trivia game.
{
"siteId": "string", // The unique site ID
"userId": "string", // The unique user ID
"cardId": "string", // The unique card ID (Trivia)
"cardType": "string", // The card type (Trivia)
"cardName": "string", // The card name
"gameplayId": "string", // The gameplay session ID
"gameplayStage": "string", // The current gameplay stage
"questionId": "string", // The question ID
"optionId": "string", // The selected option ID
"optionText": "string", // The selected option text
"answerId": "string", // The answer ID (same as optionId)
"answerText": "string", // The answer text (same as optionText)
"answerMilliseconds": 0 // Time taken to answer in ms
}
Live trivia finished
Event name in GTM: card-finished
Raised when a user completes a live trivia game.
{
"siteId": "string", // The unique site ID
"userId": "string", // The unique user ID
"cardId": "string", // The unique card ID (Trivia)
"cardType": "string", // The card type (Trivia)
"cardName": "string", // The card name
"gameplayId": "string" // The gameplay session ID
}
Live trivia prize viewed
Event name in GTM: prize-viewed
Raised when a user returns to view which prize they won after the game was ended.
{
"siteId": "string", // The unique site ID
"userId": "string", // The unique user ID
"cardId": "string", // The unique card ID (Trivia)
"cardType": "string", // The card type (Trivia)
"cardName": "string", // The card name
"gameplayId": "string", // The gameplay session ID
"prizeId": "string", // The prize ID
"prizeTitle": "string", // The prize title
"prizeDescription": "string", // The prize description
"prizeImage": "string" // The prize image URL
}
Trivia action bar clicked
Event name in GTM: action-bar-clicked
Raised when a user clicks on the action bar button in a trivia.
{
"siteId": "string", // The unique site ID
"userId": "string", // The unique user ID
"cardId": "string", // The unique card ID (Trivia)
"cardType": "string", // The card type (Trivia)
"cardName": "string", // The card name
"gameplayId": "string", // The gameplay session ID
"actionBarLink": "string" // The url that the action bar links out to (optional)
}
Live trivia social clicked
Event name in GTM: social-clicked
Raised when a user clicks to view one of your socials from a live trivia game.
{
"siteId": "string", // The unique site ID
"userId": "string", // The unique user ID
"cardId": "string", // The unique card ID (Trivia)
"cardType": "string", // The card type (Trivia)
"cardName": "string", // The card name
"gameplayId": "string", // The gameplay session ID
"socialNetwork": "string", // The social network clicked (e.g., facebook, twitter)
"socialLink": "string" // The link to the social profile
}