SurveyMonkey

Introduction

SurveyMonkey is a cloud-based survey tool that helps users create, send, and analyze surveys.

MoEngage <> Survey Monkey

SurveyMonkey helps you to drive your business forward by using their online survey and forms tool to capture the voices and opinions of your users. With the MoEngage and SurveyMonkey integration, you can:

  • Imports MoEngage users to your SurveyMonkey Contacts
  • Add your MoEngage users to your SurveyMonkey Contact Lists

Integration

library_add_check

Prerequisites

  • You will need to create a private app to access SurveyMonkey's APIs.
  • Ensure you have your SurveyMonkey's API Key.

Add MoEngage users to SurveyMonkey's Contact Lists

To create a connector campaign on MoEngage, 

1. Navigate to Create Campaign >> Connectors >> Custom and choose the delivery type most suitable to your needs. In this case, select "Event triggered".

Screenshot_2022-02-21_at_10.48.46_PM.png

Select the Trigger criteria and your target audience.

2. On step 2 of the campaign:

Call the SurveyMonkey API

To forward MoEngage users to SurveyMonkey, use the POST method and configure the payload.

  • Select the method as POST
  • Headers:
    • Authorization: Bearer <your_api_key>
    • Content-Type: application/json
  • Add the endpoint as Webhook URL: https://api.surveymonkey.com/v3/contact_lists/{{CONTACT_LIST_ID}}/contacts - Replace {{CONTACT_LIST_ID}} with your contact list's ID.
  • Body:
    JSON
    {
        "first_name": "{{UserAttribute['First Name']}}",
        "last_name": "{{UserAttribute['Last Name']}}",
        "email": "{{UserAttribute['Email (Standard)']}}",
        "custom_fields": {
            "Phone": "{{UserAttribute['Mobile Number (Standard)']}}",
            "City": "{{UserAttribute['Last Known City']}}",
            "Country": "{{UserAttribute['Last Known Country']}}"
        }
    }

Preview your request 

At this point, your campaign should be ready to test and send. You can also test your connector configuration using the Test functionality available in Step 2 of Create Connector Campaign.Screen_Shot_2022-02-22_at_11.12.42_AM.png

You can go ahead and Publish the campaign.

 

Previous

Next

Was this article helpful?
0 out of 0 found this helpful

How can we improve this article?