Sending Transactional Emails with the Marketo REST API: Part 1

July 17, 2015 | by

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 … Continue reading “Sending Transactional Emails with the Marketo REST API: Part 1”

Read More >

June 2015 Release Updates

June 30, 2015 | by

REST API Company API New company endpoints have been introduced that allow you to programmatically list, describe, and CRUD the data residing within a Marketo company object.  Note:  Role permissions were added to provide access to the Program endpoints: Read-Only Company, Read-Write Company.  If your API user role predates the release of the Company APIs, … Continue reading “June 2015 Release Updates”

Read More >

May 2015 Release Updates

May 26, 2015 | by

REST API Opportunity API.  New opportunity endpoints have been introduced that allow you to programmatically list, describe, and CRUD the data residing within a Marketo opportunity object.   Note:  Role permissions were added to provide access to the Opportunity endpoints: Read-Only Opportunity, Read-Write Opportunity.  If your API user role predates the release of the Opportunity APIs, then you … Continue reading “May 2015 Release Updates”

Read More >

Synchronizing Email Unsubscribes Across Instances

May 11, 2015 | by

Do you manage multiple instances of Marketo?  Keeping lead information synchronized across instances can be challenging.  Here is a way to sync email unsubscribes across instances using a webhook that calls an external web service.  The external web service loops through each instance looking for the known lead that triggered the unsubscribe event.  When a … Continue reading “Synchronizing Email Unsubscribes Across Instances”

Read More >

April 2015 Release Updates

April 28, 2015 | by

Marketo Mobile Engagement SDK v0.3.2 Marketo now includes marketing automation and user engagement for mobile apps.  Installing the Marketo Mobile SDK into your iOS or Android app allows Marketers to listen for in app events and send relevant push notifications. REST API Enhancements Custom Objects New custom object endpoints have been introduced that allow you … Continue reading “April 2015 Release Updates”

Read More >

Change a Lead’s Score via the REST API

February 19, 2015 | by

Let’s say you want to change a lead’s score in Marketo using the APIs. This is possible to do with the REST API using the Create/Update Lead endpoint. Below is a code sample in Ruby that shows how to make this call.

In the JSON body of the request, we specify updateOnly as the … Continue reading “Change a Lead’s Score via the REST API”

Read More >

Using the Marketo REST API with Boomi: Getting and Deleting Leads from a Static List

February 6, 2015 | by

In part 1 of this series, I discussed how it was possible to start using the REST API through Boomi with the Boomi HTTP connector, specifically getting the authentication token needed to access the REST API, and storing it in a Process Variable. Next up, we’ll begin making calls into Marketo, and in this installment, … Continue reading “Using the Marketo REST API with Boomi: Getting and Deleting Leads from a Static List”

Read More >