1. Go to this page and download the library: Download hafael/fitbank-php-sdk library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hafael / fitbank-php-sdk example snippets
nkClient = new Hafael\Fitbank\Client(
'API_KEY',
'API_SECRET',
'PARTNER_ID',
'BUSINESS_UNIT_ID',
'MKTPLACE_ID',
'TAX_NUMBER', //Account Owner
'BASE_URL', //Sandbox as default
);
//Get created accounts
$response = $fitbankClient->account()->getAccountList();
var_dump($response->json());