PHP wrapper for the Pardot RESTful API
- PHP 5.3.*
- cURL library installed
- Install directory should be writable (not required, but strongly encouraged)
- Set the email, password, and user_key values in the pardot_config.php file
- Set the debug mode and logging settings in the pardot_config.php file (optional)
- Set the namespace:
use \Pardot\API as API;
- Make requests using the 3 main request functions:
doOperationById($object, $operation, $id = null, $parameters = null)
doOperationByField($object, $operation, $field = null, $fieldValue = null, $parameters = null)
queryObject($object, $parameters = null)
The $object
and $operation
values are the constants referenced at the top of the class file.
<?php
// namespace config
use \Pardot\API as API;
$pardot_config = new \Pardot\Config(
array(
'email' => "",
'password' => "",
'userkey' => "",
)
);
// get all prospects updated within the last 2 hours
$prospects = API::Instance($pardot_config)->queryObject(API::OBJ_PROSPECT, array('updated_after' => '2 hours ago'));
var_dump($prospects);
See the example.php file for complete usage examples.