Note: This PHP-iSDK is deprecated, and will be removed from Infusionsoft's public github on April, 30 2015. Please use infusionsoft-php instead.

  1. Infusionsoft Article 00442 How Enable Infusionsoft Api Generate Key Download
  2. Infusionsoft Article 00442 How Enable Infusionsoft Api Generate Key Generator
  3. Infusionsoft Article 00442 How Enable Infusionsoft Api Generate Key Code

This SDK allows developers to easily use the Infusionsoft API with PHP

This SDK requires at least PHP 5.2

Jul 19, 2014  The infusionsoft API provides developers easy ways to connect a drupal site with infusionsoft. It also provides default integrations with rules, actions, and ubercart (depending on D6 or D7) so you can push information to infusionsoft without doing a lot of custom work. Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

  1. Clone the repository to your system

Developer Steps. Sign up for an Infusionsoft Developer account to create your first app and manage your API keys. Then request for a Sandbox Application! Get the tool's you need to build an intergration with Infusionsoft. Api documentation, usage guidlines, code examples and more! Create a new Infusionsoft integration on the form In addition to that, I will clear your form cache so that it will be refreshed from our servers. Hope this helps.

  • git clone https://github.com/infusionsoft/PHP-iSDK.git
  • alternatively you can install using composer
  1. Copy the 'src' folder (or its contents) to the folder that will hold the SDK

There are two ways we can connect to the API.

  1. First way is to use the src/conn.cfg.php configuration file

    A. You will need your Application Name and Your API Key

    • You can find your application name in the url you goto to login. eg. https://YOURAPPNAME.infusionsoft.com
    • You can get your API Key by following this article on the User Guidehttp://ug.infusionsoft.com/article/AA-00442/0/How-do-I-enable-the-Infusionsoft-API-and-generate-an-API-Key.html

    B. In src/conn.cfg.php file you will need to replace the following:

    • connectionName - This can be anything you want
    • applicationName - This is just the application name that we got in step 1
    • APIKEYGOESHERE - This is the API Key you got in step 1
  2. Windows 7 professional 64 bit activation key generator free download free. We can pass in the Application Name and API Key directly into the cfgCon function

    A. You will need your Application Name and Your API Key

    • You can find your application name in the url you goto to login. eg. https://YOURAPPNAME.infusionsoft.com
    • You can get your API Key by following this article on the User Guidehttp://ug.infusionsoft.com/article/AA-00442/0/How-do-I-enable-the-Infusionsoft-API-and-generate-an-API-Key.html

In the script you want to make the API call in you will need to do the following:

Hide all ip key generator. It’s an easy and fast way to secure your identity, lets you to surf anonymously, hide your real IP address, and prevent identity theft.

  1. We need to require the iSDK
  • require_once('src/isdk.php');
  1. Next we need to create an object
  • $app = new iSDK();
  1. Next we need to create the connection
  • $app->cfgCon('connectionName');OR
  • $app->cfgCon('applicationName', 'APIKEYGOESHERE');
  1. Next we will make our first API call using the ContactService.findByEmail method. This method returns contact information by an email address we send
  • $contacts = $app->findByEmail('test@example.com',array('Id', 'FirstName', 'LastName', 'Email'));
  • This will return a contact's Id, First Name, Last Name, and Email that has the email 'test@example.com'
  1. Finally we want to print the return information to the browser window
  • print_r($contacts);

As of Version 1.8.3 the iSDK has the ability to log API calls to a CSV. By default logging is disabled.

To enable logging do the following:

  1. In the script you want to log the API Calls of add this after you create the object
  • $app->enableLogging(1); //0 is off 1 is on
  1. (Optional) You can set the location of the CSV. By default the csv is created in the same directory as isdk.php
  • $app->setLog('apilog.csv'); //This is the full path to the file
  1. infuDate() - formats your date string for use with the API. Has an optional parameter for doing UK date formats.
Infusionsoft Article 00442 How Enable Infusionsoft Api Generate Key
  • infuDate('10/26/2013') will return '20131026T06:00:00'
  • infuDate('10/26/2013','UK') will return '2013-26-10T06:00:00'

This SDK allows developers to easily use the Infusionsoft API with PHP

This SDK requires at least PHP 5.2

  1. Clone the repository to your system
  • git clone https://github.com/infusionsoft/PHP-iSDK.git
  • alternatively you can install using composer

Infusionsoft Article 00442 How Enable Infusionsoft Api Generate Key Download

  1. Copy the 'src' folder (or its contents) to the folder that will hold the SDK

There are two ways we can connect to the API.

  1. First way is to use the src/conn.cfg.php configuration file

    A. You will need your Application Name and Your API Key

    • You can find your application name in the url you goto to login. eg. https://YOURAPPNAME.infusionsoft.com
    • You can get your API Key by following this article on the User Guidehttp://ug.infusionsoft.com/article/AA-00442/0/How-do-I-enable-the-Infusionsoft-API-and-generate-an-API-Key.html

    B. In src/conn.cfg.php file you will need to replace the following:

    • connectionName - This can be anything you want
    • applicationName - This is just the application name that we got in step 1
    • APIKEYGOESHERE - This is the API Key you got in step 1
  2. We can pass in the Application Name and API Key directly into the cfgCon function

    A. You will need your Application Name and Your API Key

    • You can find your application name in the url you goto to login. eg. https://YOURAPPNAME.infusionsoft.com
    • You can get your API Key by following this article on the User Guidehttp://ug.infusionsoft.com/article/AA-00442/0/How-do-I-enable-the-Infusionsoft-API-and-generate-an-API-Key.html

In the script you want to make the API call in you will need to do the following:

  1. We need to require the iSDK
  • require_once('src/isdk.php');
  1. Next we need to create an object
  • $app = new iSDK();
  1. Next we need to create the connection
  • $app->cfgCon('connectionName');OR
  • $app->cfgCon('applicationName', 'APIKEYGOESHERE');
  1. Next we will make our first API call using the ContactService.findByEmail method. This method returns contact information by an email address we send
  • $contacts = $app->findByEmail('test@example.com',array('Id', 'FirstName', 'LastName', 'Email'));
  • This will return a contact's Id, First Name, Last Name, and Email that has the email 'test@example.com'
  1. Finally we want to print the return information to the browser window
  • print_r($contacts);

As of Version 1.8.3 the iSDK has the ability to log API calls to a CSV. By default logging is disabled.

To enable logging do the following:

  1. In the script you want to log the API Calls of add this after you create the object

Infusionsoft Article 00442 How Enable Infusionsoft Api Generate Key Generator

  • $app->enableLogging(1); //0 is off 1 is on
  1. (Optional) You can set the location of the CSV. By default the csv is created in the same directory as isdk.php
  • $app->setLog('apilog.csv'); //This is the full path to the file
  1. infuDate() - formats your date string for use with the API. Has an optional parameter for doing UK date formats.

Infusionsoft Article 00442 How Enable Infusionsoft Api Generate Key Code

  • infuDate('10/26/2013') will return '20131026T06:00:00'
  • infuDate('10/26/2013','UK') will return '2013-26-10T06:00:00'