Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.97 KB

File metadata and controls

64 lines (41 loc) · 1.97 KB

VitexSoftware\Raiffeisenbank\GetBatchDetailApi

All URIs are relative to https://api.rb.cz.

Method HTTP request Description
getBatchDetail() GET /rbcz/premium/api/payments/batches/{batchFileId}

getBatchDetail()

Getting details about state of processing of imported batch file and created batch transactions. All possible batch status values are: DRAFT, ERROR, FOR_SIGN, VERIFIED, PASSING_TO_BANK, PASSED, PASSED_TO_BANK_WITH_ERROR, UNDISCLOSED

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new VitexSoftware\Raiffeisenbank\Api\GetBatchDetailApi(
    // 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.
$batchFileId = 56; // int | Batch file id

try {
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GetBatchDetailApi->getBatchDetail: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
xRequestId string Unique request id provided by consumer application for reference and auditing.
batchFileId int Batch file id

Return type

\VitexSoftware\Raiffeisenbank\Model\GetBatchDetail200Response

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]