Marketo Client
This package provides an interface for interacting with the Marketo REST API.
The code is a revamped fork of eventfarm/marketo-client. The internal architecture has been simplified, performance improved and helper functions added to aid integration into your consumer application.
Installation
$ composer require vpmv/marketo-client
Or add the following lines to your composer.json
file:
{
"require": {
"vpmv/marketo-client": "dev-master"
}
}
$ composer install
Implementation details
Project Defaults
In order to get you up and running as easily as possible, we provide default implementations of a REST client and Marketo provider to use in combination with this package.
- We've chosen to use Guzzle for sending HTTP requests
- We've chosen to use The PHP League's Oauth Client for Marketo authentication and token refresh.
You can extend the client to implement your own interface to cache the access token, using the construct argument TokenRefreshCallback.
Guzzle REST Client
Our REST client implements the PSR-7 HTTP message interface.
You can either use the provided GuzzleRestClient or have your own that implements our RestClientInterface.
MarketoProvider
Our default Marketo OAuth2 provider is the Marketo Provider library.
You can either use the provided MarketoProvider or use your own that implements our MarketoProviderInterface.
Example Client Implementation
<?php
namespace App;
use VPMV\Marketo\Oauth\AccessToken;
use VPMV\Marketo\MarketoClient;
class DemoMarketoAPI extends Marketo
{
public function __cosntruct() {
parent::__construct($this->getMarketoClient());
}
public function getMarketoClient():MarketoClient
{
if (empty($this->client)) {
$this->client = MarketoClient::with(
'CLIENT_ID',
'CLIENT_SECRET',
'BASE_URL',
$this->getRefreshTokenFromCache(),
$this->tokenRefreshCallback
);
}
return $this->client;
}
private function getRefreshTokenFromCache(): ?AccessToken {
// get token from cache
return new AccessToken('my_token', 300, 1642768705);
// or return null
}
public function tokenRefreshCallback(AccessToken $token)
{
// store the token
}
}
Usage
The use of the Marketo helper interface is completely optional. All it does, is wrap the MarketoClient into the API endpoint abstractions.
N.B.: Some implementations have changed during the overhaul and might not work as described below!
Campaigns
Get Campaigns
Returns a list of campaign records. Refer to the docs for the full list of options.
public function getCampaigns(array $options = array())
<?php
$demoMarketo = new DemoMarketoAPI();
$options = [
"programName" => "My Marketo Program",
"batchSize" => 10
];
$campaigns = $demoMarketo->campaigns()->getCampaigns($options);
// getCampaigns() can also be called without options.
// $campaigns = { ... }
Trigger Campaign
Passes a set of leads to a trigger campaign to run through the campaign's flow. Refer to the docs for the full list of options.
- A
campaignId
and an array of options that includes aninput
key (mapped to an array that contains arrays of lead data) must be passed totriggerCampaign()
.
public function triggerCampaign(int $campaignId, array $options)
<?php
$demoMarketo = new DemoMarketoAPI();
$campaignId = 1029;
$options = [
"input" => [
"leads" => [
[
"id" => 1234
]
]
]//, additional options
];
$campaign = $demoMarketo->campaigns()->triggerCampaign($campaignId, $options);
// $campaign = { ... }
Lead Fields
Get Lead Fields
Returns metadata about lead objects in the target instance, including a list of all fields available for interaction via the APIs.
public function getLeadFields(array $options = array())
<?php
$demoMarketo = new DemoMarketoAPI();
$leadFields = $demoMarketo->leadFields()->getLeadFields();
// $leadFields = { ... }
Leads
Create or Update Leads
Syncs a list of leads to the target instance. Refer to the docs for the full list of options.
- An array of options that includes an
input
key (mapped to an array that contains arrays of lead data) must be passed tocreateOrUpdateLeads()
.
public function createOrUpdateLeads(array $options)
By default, Marketo sets the type of sync operation (action
) to createOrUpdate
and the lookupField
to email
. If using those defaults:
- Email is not required; if an email is not included in a lead array, Marketo will create a lead without an email.
- When an email is included, Marketo will search for existing leads with that email. If one is found, Marketo will update the found lead with the data sent; if one is not found, Marketo will create a new lead with the data sent.
<?php
$demoMarketo = new DemoMarketoAPI();
$options = [
"input" => [
[
"email" => "email1@example.com",
"firstName" => "Example1First",
"lastName" => "Example1Last"
],
[
"email" => "email2@example.com",
"firstName" => "Example2First",
"lastName" => "Example2Last"
]
]//, additional options
];
$leads = $demoMarketo->leads()->createOrUpdateLeads($options);
// $leads = { ... }
Update Leads' Program Status
Changes the program status of a list of leads in a target program. Refer to the docs for the full list of options.
- A
programId
and an array of options that includes aninput
key (mapped to an array that contains arrays of lead data) and astatus
key (mapped to a program status) must be passed toupdateLeadsProgramStatus()
.
public function updateLeadsProgramStatus(int $programId, array $options)
<?php
$demoMarketo = new DemoMarketoAPI();
$programId = 1234;
$options = [
"input" => [
[
"id" => 1111
]
],
"status" => "Registered"
];
$leads = $demoMarketo->leads()->updateLeadsProgramStatus($programId, $options);
// $leads = { ... }
Get Leads by Program
Retrieves a list of leads that are members of the designated program. Refer to the docs for the full list of options.
- A
programId
must be passed togetLeadsByProgram()
.
public function getLeadsByProgram(int $programId, array $options = array())
<?php
$demoMarketo = new DemoMarketoAPI();
$programId = 1234;
$options = [
"fields" => 'firstName,lastName,email,middleName,mktoIsPartner';
];
$leads = $demoMarketo->leads()->getLeadsByProgram($programId, $options);
// getLeadsByProgram() can also be called without options.
// $leads = { ... }
Lead Partitions
Get Lead Partitions
Returns a list of available partitions in the target instance. Refer to the docs for the full list of options.
public function getPartitions(array $options = array())
<?php
$demoMarketo = new DemoMarketoAPI();
$partitions = $demoMarketo->partitions()->getPartitions();
// $partitions = { ... }
Programs
Get Programs
Retrieves the list of accessible programs from the target instance. Refer to the docs for the full list of options.
public function getPrograms(array $options = array())
<?php
$demoMarketo = new DemoMarketoAPI();
$programs = $demoMarketo->programs()->getPrograms();
// $programs = { ... }
Statuses
Get Statuses
Retrieves channels based on the provided name. Refer to the docs for the full list of options.
- A
programChannel
must be passed togetStatuses()
.
public function getStatuses(string $programChannel, array $options = array())
<?php
$demoMarketo = new DemoMarketoAPI();
$programChannel = "Live Event";
$programs = $demoMarketo->statuses()->getStatuses($programChannel);
// $programs = { ... }