SDK for Clearhaus API written in PHP and decoupled from any HTTP messaging client using HTTPlug.
You can sign up for a Clearhaus account at https://www.clearhaus.com/.
Clearhaus SDK only officially supports installation through Composer. For Composer documentation, please refer to getcomposer.org.
You can install the module from command line:
$ composer require clearhaus/sdk
Please see http://docs.gateway.clearhaus.com for up-to-date documentation.
For authentication, you must provide an API key that you will find in your account:
use Clearhaus\Client;
$client = new Client($apiKey);
The signature is an RSA signature of the HTTP body; it is represented in Hex. The signee must be identified by the signing API-key.
use Clearhaus\Client;
$client->enableSignature();
To reserve money on a cardholder’s bank account you make a new authorization resource.
$authorization = $client->authorizations->authorize([
'amount' => 2050,
'currency' => 'EUR',
'ip' => '1.1.1.1',
'card' => [
'number' => '4111111111111111',
'expire_month' => '06',
'expire_year' => '2018',
'csc' => '123',
],
]);
You can also use a card previously tokenized.
$authorization = $client->authorizations->authorizeFromCardId($cardId, [
'amount' => 2050,
'currency' => 'EUR',
'ip' => '1.1.1.1',
]);
To transfer money from a cardholder’s bank account to your merchant bank account you make a new capture resource. You can make multiple captures for an authorization transaction.
$client->captures->capture($authorization['id']);
You can withdraw a partial amount by providing an amount parameter:
$client->captures->capture($authorization['id'], ['amount' => 1000]);
To refund money to a cardholder’s bank account you make a new refund resource. You can make multiple refunds for an authorization transaction.
$client->refunds->refund($authorization['id']);
You can refund a partial amount by providing an amount parameter:
$client->refunds->refund($authorization['id'], ['amount' => 500]);
To release reserved money on a cardholder’s bank account you make a new void resource. A reservation normally last for 7 days depending on issuing bank and is then automatically released.
$client->voids->void($authorization['id']);
To payout (e.g. winnings and not refunds) money to a cardholder’s bank account you make a new credit resource. You must have a card resource to make a credit transaction.
$client->credits->credit($card['id'], [
'amount' => 2050,
'currency' => 'EUR',
]);
A card resource (token) corresponds to a payment card and can be used to make a credit or authorization transaction without providing sensitive card data. A card resource must be used to make subsequent recurring authorization transactions.
$card = $client->cards->createCard([
'card' => [
'number' => '4111111111111111',
'expire_month' => '06',
'expire_year' => '2018',
'csc' => '123',
],
]);
The account resource holds basic merchant account information.
$account = $client->accounts->getAccount();
3-D Secure is a protocol designed to improve security for online transactions. Before you continue please read more about this protocol at 3Dsecure.io.
To perform a 3-D Secure transaction you make an ordinary authorization including a pares value:
$authorization = $client->authorizations->authorize([
'amount' => 2050,
'currency' => 'EUR',
'ip' => '1.1.1.1',
'card' => [
'number' => '4111111111111111',
'expire_month' => '06',
'expire_year' => '2018',
'csc' => '123',
],
'threed_secure' => [
'pares' => '<some-pares-value>',
],
]);
You can use the predefined factory Clearhaus\Container\ClientFactory
to instantiate a Clearhaus client:
use Clearhaus\Container\ClientFactory;
$factory = new ClientFactory();
$client = $factory($psrContainer);
The client configuration must look like below:
use Clearhaus\Client;
return [
'clearhaus_sdk' => [
'api_key' => null, // Allow to provide API key that you will find in your account
'mode' => Client::MODE_TEST, // Allow to define the usage of either test or live accounts
'use_signature' => true, // Allow to configure the usage of request signature
'plugins' => [], // HTTPlug plugins that allow to add some processing logic
],
];
$ vendor/bin/phpspec run
The MIT License (MIT). Please see License File for more information.