PHP code example of payson / paysonpayments

1. Go to this page and download the library: Download payson/paysonpayments 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/ */

    

payson / paysonpayments example snippets



// Include library (without composer)
tId = '4';
$apiKey = '2acab30d-fe50-426f-90d7-8c60a7eb31d4';
$apiUrl = \Payson\Payments\Transport\Connector::TEST_BASE_URL;
 
$connector = \Payson\Payments\Transport\Connector::init($agentId, $apiKey, $apiUrl);

$checkoutClient = new \Payson\Payments\CheckoutClient($connector);

$recurringSubscriptionClient = new \Payson\Payments\RecurringSubscriptionClient($connector);

$recurringPaymentClient = new \Payson\Payments\RecurringPaymentClient($connector);

// getAccountInfo() can be used with all three clients
$accountInformation = $checkoutClient->getAccountInfo();

// Print the result
print('<pre>' . print_r($accountInformation, true) . '</pre>');