dev-master
9999999-dev http://printfection.com/Printfection PHP Library
MIT
The Requires
- php >=5.2
- ext-curl *
- ext-json *
- ext-mbstring *
api printfection swag marketing
Wallogit.com
2017 © Pedro Peláez
Printfection PHP Library
PHP 5.2 and later., (*1)
You can install the bindings via Composer. Add this to your composer.json:, (*2)
{
"require": {
"printfection/printfection-php": "1.*"
}
}
Then install via:, (*3)
composer.phar install
To use the bindings, either user Composer's autoload:, (*4)
require_once('vendor/autoload.php');
Or manually:, (*5)
require_once('/path/to/vendor/printfection/printfection-php/lib/Printfection.php');
Obtain the latest version of the Printfection PHP bindings with:, (*6)
git clone https://github.com/printfection/printfection-php
To use the bindings, add the following to your PHP script:, (*7)
require_once("/path/to/printfection-php/lib/Printfection.php");
Simple usage looks like:, (*8)
Printfection::setApiKey('ACCESS_TOKEN');
$order = Printfection_Order::create(array(
'campaign_id' => 1,
'ship_to' => array(
'name' => 'Herman Munster',
'address' => '1313 Mockingbird Lane',
'address2' => '#1200',
'city' => 'Mockingbird Heights',
'state' => 'California',
'zip' => '90210',
'country' => 'US',
'email' => 'herman@printfection.com',
'phone' => '3034597990'
),
'lineitems' => array(
array(
'item_id' => 1,
'size_id' => 1,
'quantity' => 13
)
)
));
echo $order;
Please see http://printfection.github.io/API-Documentation/ for up-to-date documentation., (*9)
This API client was strongly inspired by (and based on) the Stripe PHP client library. Special thanks to everyone who has worked on that project., (*10)
Printfection PHP Library
MIT
api printfection swag marketing