A quiz ad has multiple-choice questions and answers. Within each quiz result, advertisers can add outbound links to more content, products, and more.
Before creating a Quiz ad, first create an organic Pin using for each result in the quiz. Quiz ads cannot be saved by a Pinner, but Quiz ad results can be saved. Next, use the field to set the Pin's questions and results. Advertisers can create 2-3 questions per ad, and each question can have 2-3 options for Pinners to select.
Map the ID associated with each question option to the result_id of the result you'd like shown to the Pinner.
If a Pinner selects options with different result IDs, we consider this a tie and the result will be a randomized selection within the possible result IDs.
The number of question options should be equal to the number of results.
The order of options a Pinner can select within a quiz will be randomized each time it's served.
Here's an example payload: {
"quiz_pin_data": {
"questions": [
{
"question_id": 1,
"question_text": "Where do you thrive?",
"options": [
{
"text": "Hangout vibes",
"id": 1
},
{
"text": "Time to party!",
"id": 2
},
{
"text": "Keeping it lowkey",
"id": 3
}
]
},
{
"question_id": 2,
"question_text": "Where would you nap?",
"options": [
{
"text": "Hammock in the mountains",
"id": 2
},
{
"text": "Beach towel in the sand",
"id": 3
},
{
"text": "Tent under the stars",
"id": 1
}
]
}
],
"results": [
{
"result_id": 1,
"organicPinId": "1234",
"android_deep_link": "https://www.pinterest.com/",
"iOS_deep_link": "https://www.pinterest.com/",
"destination_url": "https://www.pinterest.com/"
},
{
"result_id": 2,
"organicPinId": "1234",
"android_deep_link": "https://www.pinterest.com/",
"iOS_deep_link": "https://www.pinterest.com/",
"destination_url": "https://www.pinterest.com/"
},
{
"result_id": 3,
"organicPinId": "1234",
"android_deep_link": "https://www.pinterest.com/",
"iOS_deep_link": "https://www.pinterest.com/",
"destination_url": "https://www.pinterest.com/"
}
]
}
}