PHP library for the PaymentSpring API
PaymentSpring is the easiest way to accept payments online, powered by an API designed for developers. This is the official PHP library for the PaymentSpring API., (*1)
PaymentSpring API keys are required. Sign up for a free sandbox account to get your API keys., (*2)
Usage examples can be found in the index.php
file. You can add your own API keys in that file to test things out. To see all of the available endpoints and parameters, check out the API docs., (*3)
The easiest way to user this library is with composer., (*4)
Or, you can clone this repository. You must require the init.php
file wherever you're going to use the this library. This is not required if you're using composer., (*5)
// Replace these with your actual keys. \PaymentSpring\PaymentSpring::setApiKeys(YOUR_PUBLIC_KEY, YOUR_PRIVATE_KEY);
This takes no arguments., (*6)
\PaymentSpring\Customer::listCustomers();
Customer ID integer, (*7)
\PaymentSpring\Customer::getCustomer($customerID);
Customer Parameters array, (*8)
\PaymentSpring\Customer::createCustomer($customerDetails);
This takes no arguments., (*9)
\PaymentSpring\Plan::listPlans();
Plan ID integer
Customer ID integer
Additional Parameters array optional, (*10)
\PaymentSpring\Plan::subscribeCustomer($planID, $customerID, $options);
For when you have a new customer and want to subscribe them to a plan at the same time., (*11)
Customer Details array
Plan ID integer
Additional Parameters array optional, (*12)
\PaymentSpring\Plan::createAndSubscribeCustomer( $planID, $customerID, $options );
Charge Details/Parameters array
Amount in Cents integer (not required if included in parameters), (*13)
$amountInCents = 2500; $chargeDetails = array( "card_number" => "4111111111111111", "card_exp_month" => "01", "card_exp_year" => "19", "csc" => "123" ); \PaymentSpring\Charge::chargeCard($chargeDetails, $amountInCents);
Customer ID integer
Amount in Cents integer
Other Parameters array (optional), (*14)
\PaymentSpring\Charge::chargeCustomer( $customerID, $amountInCents, $options );
Note: This library doesn't currently have a built in way of creating or fetching tokens. You could, however, use the makeRequest
function, (*15)
PaymentSpring Token string
Amount in Cents integer
Other Parameters array (optional), (*16)
\PaymentSpring\Charge::chargeToken($token, $amountInCents, $options);
For any requests that are not yet included in this library, you can make custom requests. To see all of the available endpoints and parameters, check out the API docs., (*17)
This takes 2-3 arguments., (*18)
Path to request string
Parameters array
Is POST? boolean, default false/GET, (*19)
\PaymentSpring\PaymentSpring::makeRequest( "/receipts/templates", array( "receipt_text" => "Test template text [Amount]", "name" => "Basic Template", "subject" => "thanks for the payment" ), true );