Connect Quriobot to Moosend
We made connecting your Quriobot to Moosend super easy! Just follow these steps:
- Setup your bot (I started with the Contact template with first and last name split up)
- Create variable on those variables you want to send to Moosend (in this case justfirstName, lastName, and email, but you can always add more variables):
- Create yourJSON Webhook Response connection which uses Moosend API:
-
-
JSON body is:
-
{ "Name": "{{firstName}} {{lastName}}", "Email": "{{email}}", "HasExternalDoubleOptIn": false, "CustomFields": [ "Age=25", "Country=USA" ] }
it uses bot variables previously added. You can add/remove custom fields if needed and set their values using the bot variables as well.
-
-
the URL setting is in the form:https://api.moosend.com/v3/subscribers/
/subscribe.json?apikey= . Where:- <MailingListID> - is the ID of the target mailing list
- the API key (You may find your API Key or generate a new one in your account settings. Example: bafe55f4-e53e-4651-8164-c6d6ff05081b)
-
Extra tips:
-
Always remember and adhere to theGDPRand always explain your purpose for storing personal information and it’s always good practice to have a double-opt-in for signing up by sending a verification email, that way you always have a legitimate email address
-
Moosend (and other email campaigning tools likeHugo) usually have options for email automation or drip campaigns. This way you can easily send a welcome mail to those persons who signed up!
-
If you are using just a single field in Moosend for Name you can just combine the variables:
-
Don’t want every signup in your email campaign but only, for a very exotic example, those people whose email address or name start with a ‘Q’ all you have to do is add an advanced condition!
-
You can set as many Response connections as you like!
Please note they will not always be executed in the order you created them.