All URIs are relative to https://api.rb.cz.
| Method | HTTP request | Description |
|---|---|---|
| getBalance() | GET /rbcz/premium/api/accounts/{accountNumber}/balance |
Get balance for given accounts.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new VitexSoftware\Raiffeisenbank\Api\GetAccountBalanceApi(
// If you want use custom http client, pass your client which implements `Psr\Http\Client\ClientInterface`.
// This is optional, `Psr18ClientDiscovery` will be used to find http client. For instance `GuzzleHttp\Client` implements that interface
new GuzzleHttp\Client()
);
$xRequestId = 'xRequestId_example'; // string | Unique request id provided by consumer application for reference and auditing.
$accountNumber = 'accountNumber_example'; // string | The number of account without prefix and bankCode
try {
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GetAccountBalanceApi->getBalance: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| xRequestId | string | Unique request id provided by consumer application for reference and auditing. | |
| accountNumber | string | The number of account without prefix and bankCode |
\VitexSoftware\Raiffeisenbank\Model\GetBalance200Response
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]