Request Campaign - Email Settings

Sending Transactional Emails with the Marketo REST API: Part 1

Kenny_Elkington
Marketo Employee
Marketo Employee

This post originally appears here.

A common use case for the Marketo API is to trigger the sending of transactional emails to specific records via the Request Campaign API call.  You can find an example covering this use case with the SOAP API here.  There are a few configuration requirements within Marketo in order to execute the required call with the Marketo REST API.

  • The recipient must have a record within Marketo
  • There needs to be a Transactional Email created and approved in your Marketo instance.
  • There needs to be an active trigger campaign with the Campaign is Requested, Source: Web Service API, that is set up to send the email

First create and approve your email.  If the email is truly transactional, you will likely need to set it to operational, but be sure that it legally qualifies as operational.  This is configured from with the Edit Screen under Email Actions > Email Settings:

Request Campaign - Email Settings

Request Campaign - Operational

Approve it and we’re ready to create our campaign:

RequestCampaign - Approve Draft

If you’re new to creating campaigns, check out the Create a New Smart Campaign article on docs.marketo.com.  Once you’ve created your campaign, we need to go through these steps.  Configure your Smart List with the Campaign is Requested trigger: Request Campaign - Smart List

Now we need to configure the flow to point a Send Email step to our email: Request Campaign - Flow

Before activation, you’ll need to decide on some settings in the Schedule tab.  If this particular email should only ever be sent once to a given record, then leave the qualification settings as is.  If it’s required that they receive the email multiple times, though, you’ll want to adjust this to either every time or to one of the available cadences: Qualification Rules

Now we’re ready to activate:

Request Campaign - Schedule

Sending the API Calls

Note: In the Java examples below, we’ll be using the minimal-json package to handle JSON representations in our code.  You can read more about this project here: https://github.com/ralfstx/minimal-json

The first part of sending a transactional email through the API is ensuring that a record with the corresponding email address exists in your Marketo instance and that we have access to its lead ID.  For the purposes of this post, we will assume that the email addresses are in Marketo already, and we only need to retrieve the ID of the record.  For this, we will be using the Get Multiple Leads by Filter Type call, and we will be reusing some of the Java code from the previous post on authenticating and retrieving lead data from Marketo. Let's take a look at our Main method for to request the campaign:

package dev.marketo.blog_request_campaign;  import com.eclipsesource.json.JsonArray;  public class App  {     public static void main( String[] args )     {          //Create an instance of Auth so that we can authenticate with our Marketo instance         Leads leadsRequest = new Leads(auth).setFilterType("email").addFilterValue("requestCampaign.test@marketo.com");          //Create and parameterize an instance of Leads         //Set your email filterValue appropriately         Leads leadsRequest = new Leads(auth).setFilterType("email").addFilterValue("test.requestCamapign@example.com");          //Get the inner results array of the response         JsonArray leadsResult = leadsRequest.getData().get("result").asArray();          //Get the id of the record indexed at 0         int lead = leadsResult.get(0).asObject().get("id").asInt();          //Set the ID of your campaign from Marketo         int campaignId = 0;         RequestCampaign rc = new RequestCampaign(auth, campaignId).addLead(lead);          //Send the request to Marketo         rc.postData();     } }

To get to these results from the JsonObject response of leadsRequest, we’ll need to write some code .  To retrieve the first result in the Array, we need to extract the Array from the JsonObject and get the object indexed at 0:

JsonArray leadsResult = leadsRequest.getData().get("result").asArray(); int leadId = leadsResult.get(0).asObject().get("id").asInt();

From here now all we need to do is the Request Campaign call.  For this, the required parameters are ID in the URL of the request, and an array of JSON objects containing one member, "id."  Let's take a look at the code for this:

package dev.marketo.blog_request_campaign; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.Reader; import java.net.MalformedURLException; import java.net.URL; import java.util.ArrayList; import javax.net.ssl.HttpsURLConnection; import com.eclipsesource.json.JsonArray; import com.eclipsesource.json.JsonObject;  public class RequestCampaign {      private String endpoint;      private Auth auth;      public ArrayList leads = new ArrayList();      public ArrayList tokens = new ArrayList();            public RequestCampaign(Auth auth, int campaignId) {           this.auth = auth;           this.endpoint = this.auth.marketoInstance + "/rest/v1/campaigns/" + campaignId + "/trigger.json";      }      public RequestCampaign setLeads(ArrayList leads) {           this.leads = leads;           return this;      }      public RequestCampaign addLead(int lead){           leads.add(lead);           return this;      }      public RequestCampaign setTokens(ArrayList tokens) {           this.tokens = tokens;           return this;      }      public RequestCampaign addToken(String tokenKey, String val){           JsonObject jo = new JsonObject().add("name", tokenKey);           jo.add("value", val);           tokens.add(jo);           return this;      }      public JsonObject postData(){           JsonObject result = null;           try {                JsonObject requestBody = buildRequest(); //builds the Json Request Body                String s = endpoint + "?access_token=" + auth.getToken(); //takes the endpoint URL and appends the access_token parameter to authenticate                System.out.println("Executing RequestCampaign call\n" + "Endpoint: " + s + "\nRequest Body:\n"  + requestBody);                URL url = new URL(s);                 HttpsURLConnection urlConn = (HttpsURLConnection) url.openConnection(); //Return a URL connection and cast to HttpsURLConnection                urlConn.setRequestMethod("POST");                urlConn.setRequestProperty("Content-type", "application/json");             urlConn.setRequestProperty("accept", "text/json");             urlConn.setDoOutput(true);                OutputStreamWriter wr = new OutputStreamWriter(urlConn.getOutputStream());                wr.write(requestBody.toString());                wr.flush();                InputStream inStream = urlConn.getInputStream(); //get the inputStream from the URL connection                Reader reader = new InputStreamReader(inStream);                result = JsonObject.readFrom(reader); //Read from the stream into a JsonObject                System.out.println("Result:\n" + result);           } catch (MalformedURLException e) {                e.printStackTrace();           } catch (IOException e) {                e.printStackTrace();           }           return result;      }            private JsonObject buildRequest(){           JsonObject requestBody = new JsonObject(); //Create a new JsonObject for the Request Body           JsonObject input = new JsonObject();           JsonArray leadsArray = new JsonArray();           for (int lead : leads) {                JsonObject jo = new JsonObject().add("id", lead);                leadsArray.add(jo);           }           input.add("leads", leadsArray);           JsonArray tokensArray = new JsonArray();           for (JsonObject jo : tokens) {                tokensArray.add(jo);           }           input.add("tokens", tokensArray);           requestBody.add("input", input);           return requestBody;      }  }

This class has one constructor taking an Auth, and the Id of the campaign.  Leads are added to the object either by passing an ArrayList<Integer> containing the Ids of the records to setLeads, or by using addLead, which takes one integer and appends it to the existing ArrayList in the leads property.  To trigger the API call to pass the lead records to the campaign, postData needs to be called, which returns a JsonObject containing the response data from the request.  When request campaign is called, every lead passed to the call will be processed by the target trigger campaign in Marketo and be sent the email which was created previously. Congratulations, you've triggered an email through the Marketo REST API.  Keep an eye out for Part 2 where we'll look at dynamically customizing the content of an email through Request Campaign.

1670
2
2 Comments
Jason_Hamilton1
Level 8 - Champion Alumni

Great post, thanks Kenny!

Kenny_Elkington
Marketo Employee

You're very welcome.