2017 © Pedro Peláez
 

library marketo-rest-api

A PHP client for the Marketo.com REST API

image

arkadedigital/marketo-rest-api

A PHP client for the Marketo.com REST API

  • Friday, April 15, 2016
  • by arkadedigital
  • Repository
  • 3 Watchers
  • 2 Stars
  • 578 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 46 Forks
  • 0 Open issues
  • 10 Versions
  • 66 % Grown

The README.md

Marketo REST API Client

Unofficial PHP client for the Marketo.com REST API: http://developers.marketo.com/documentation/rest/. Requires PHP 5.3.3+, (*1)

Installation

The recommended way of installing the client is via Composer. Simply run the following command to add the library to your composer.json file., (*2)

composer require arkadedigital/marketo-rest-api

Setup

The client is built on Guzzle 3 and uses a factory method to create an instance. You must specify either a Munchkin ID or the full url., (*3)

For Rest Api access:

use Arkadedigital\Marketo\Client;

$client = Client::factory(array(
    'client_id' => 'Marketo client ID',         // required
    'client_secret' => 'Marketo client secret', // required
    'munchkin_id' => '100-AEK-913' // alternatively, you can supply the full URL, e.g. 'url' => 'https://100-AEK-913.mktorest.com'
));

For Bulk Api access:

use Arkadedigital\Marketo\Client;

$client = Client::factory(array(
    'client_id' => 'Marketo client ID',         // required
    'client_secret' => 'Marketo client secret', // required
    'munchkin_id' => '100-AEK-913' // alternatively, you can supply the full URL, e.g. 'url' => 'https://100-AEK-913.mktorest.com'
    'bulk' => true // if uploading leads via file upload (e.g. csv)
));

Usage

View the source of src/Client.php for all the available methods., (*4)

License

This source is licensed under an MIT License, see the LICENSE file for full details. If you use this code, it would be great to hear from you., (*5)

The Versions

15/04 2016

dev-develop

dev-develop

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

12/04 2016

dev-master

9999999-dev

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

12/04 2016

v0.0.8

0.0.8.0

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

12/04 2016

v0.0.7

0.0.7.0

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

11/04 2016

v0.0.6

0.0.6.0

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

02/12 2015

v0.0.5

0.0.5.0

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

29/04 2015

v0.0.4

0.0.4.0

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

03/02 2015

v0.0.3

0.0.3.0

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

23/12 2014

v0.0.2

0.0.2.0

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires

 

12/11 2014

v0.0.1

0.0.1.0

A PHP client for the Marketo.com REST API

  Sources   Download

MIT

The Requires