PHP code example of vitexsoftware / rbczpremiumapi
1. Go to this page and download the library: Download vitexsoftware/rbczpremiumapi 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/ */
vitexsoftware / rbczpremiumapi example snippets
$apiInstance = new VitexSoftware\Raiffeisenbank\Api\DownloadStatementApi(
// If you want use custom http client, pass your client which implements
// `GuzzleHttp\ClientInterface`.
// This is optional, Internal `ApiClient` will be used as default.
// Else you must call setXIBMClientId($lientID) and $this->setSUIPAddress($clientPubIP)
// methods to set API call properly
new \VitexSoftware\Raiffeisenbank\ApiClient(['clientpubip'=> \VitexSoftware\Raiffeisenbank\ApiClient::getPublicIP() ,'debug'=>true])
);
$xRequestId = 'xRequestId_example'; // string | Unique request id provided by consumer application for reference and auditing.
$acceptLanguage = 'acceptLanguage_example'; // string | The Accept-Language request HTTP header is used to determine document language. Supported languages are `cs` and `en`.
$requestBody = new \VitexSoftware\Raiffeisenbank\Model\DownloadStatementRequest(); // \VitexSoftware\Raiffeisenbank\Model\DownloadStatementRequest
try {
$result = $apiInstance->downloadStatement( $xRequestId, $acceptLanguage, $requestBody, $pSUIPAddress);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DownloadStatementApi->downloadStatement: ', $e->getMessage(), PHP_EOL;
}