Last active
August 29, 2015 14:06
-
-
Save atwellpub/52c89d1773714e38c0f7 to your computer and use it in GitHub Desktop.
/** * This example seeks to help developers understand how to access the /leads/modify endpoint. */
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This example seeks to help developers understand how to access the /leads/modify endpoint. | |
*/ | |
if ( !class_exists( 'Example_API_Calls' )) { | |
class Example_API_Calls { | |
static $key; | |
static $token; | |
static $base_api_url; | |
static $complete_api_url; | |
static $endpoint; | |
static $data; | |
static $response; | |
/** | |
* initiates class | |
*/ | |
public function __construct() { | |
/* Define API Credentials for testing - used by connect() method below */ | |
self::$key = '91866f1c792f003fc986e3783ca71e88'; | |
self::$token = 'eaa9be109fc204dee7dfd7d7a94184d9'; | |
self::$base_api_url = 'http://www.yoursite.com/inbound-api/v1/'; | |
} | |
/** | |
* Determines connect method and makes a request to the API | |
* | |
* | |
*/ | |
public static function connect() { | |
$connect = (isset($_GET['connect'])) ? $_GET['connect'] : 'curl'; | |
switch ( $connect ) { | |
case 'curl' : | |
self::curl_connect( self::$endpoint , self::$data ); | |
BREAK; | |
} | |
} | |
/** | |
* Uses CURL to connect to Inbound API | |
*/ | |
public static function curl_connect( $endpoint , $data ) { | |
$api_url = add_query_arg( array('key' => self::$key , 'token' => self::$token ), self::$base_api_url . $endpoint ); | |
$ch = curl_init( $api_url ); | |
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
self::$response = curl_exec($ch); | |
self::check_response( $endpoint , $data ); | |
} | |
/** | |
* Returns data from the API call for review. | |
*/ | |
public static function check_response() { | |
echo 'API Key: '. self::$key .'<br>'; | |
echo 'API Token: '. self::$token .'<br>'; | |
echo 'API Endpoint: '. self::$endpoint .'<br>'; | |
echo '<b>Response</b>:<br>'; | |
echo '<div class="toggle" id="'.$id.'">'; | |
echo '<pre>'; | |
echo self::$response; | |
echo '</pre>'; | |
echo '</div><br><br>'; | |
} | |
/** | |
* Example API Query: Updates a lead given an ID | |
* @endpoint leads/update | |
*/ | |
public static function modify_lead() { | |
/* Set the ID of the lead to modify */ | |
$id = (isset($_GET['id'])) ? $_GET['id'] : 96986 ; | |
/* Sets endpoint to http://www.yoursite.com/inbound-api/v1/leads/modify */ | |
self::$endpoint = 'leads/modify'; | |
/* Prepare an example lead dataset - this data will be sent to the API */ | |
self::$data = array( | |
'ID' => $id , | |
'meta_data' => array( | |
'wpleads_company_name' => 'Updated Company Name' | |
), | |
'remove_from_lists' => array( 110 , 111 ), //requires knowing the list id beforehand | |
'add_to_lists' => array( 113 , 114 ), //requires knowing the list id beforehand | |
'add_tags' => array( 'tag-4' , 'tag-5' , 'tag-6' ), //these tags will be created if they do not exist | |
'remove_tags' => array( 'tag-1' , 'tag-2' ) | |
); | |
/* Connect to the API and print data results */ | |
self::connect(); | |
} | |
} | |
/* Initialize Class */ | |
$Example_API_Calls = new Example_API_Calls(); | |
/* Updates a lead*/ | |
$Example_API_Calls->modify_lead(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment