Checkissuing API PHP SDK

We have provided a PHP SDK to ease the integration process. You can download the zip file below and to use it simply:

<?php
require_once dirname(__FILE__) . '/checkissuing.sdk.php';

$params = array(
  
'client_id' => 1232,
  
'api_key' => ''
);

$api = new CheckissuingAPIClient($params);
$bankAccounts = new CheckissuingBankAccounts($api);

$accts $bankAccounts->get();

foreach (
$accts as $aid => $a) {
  echo 
$a->name '<br>' $a->name_on_checks '<br><br>';
}
?>

The above example uses the API to get a list of bank accounts, loops over them and prints the accounts name and the name on the checks printed from that account.

Download

Checkissuing API PHP SDK