KashierDevelopersKashier Developers
API reference and playgroundSettlement reporting

Get a settlement batch

curl -X GET "https://test-api.kashier.io/v3/payment/settlement/batches/string"
{  "message": "string",  "data": {    "batchId": "string",    "rfsDate": "string",    "channel": "string",    "method": "string",    "transactionsCount": 0,    "totalOriginalAmount": 0,    "totalFees": 0,    "totalVat": 0,    "totalSettlementAmount": 0  }}

Retrieves one settlement batch by its id, without needing to know which window it belongs to. Use it when a transaction gave you a settlementBatchId on its own.

Authorization

secretKey
Authorization<token>

Merchant secret key used to identify the merchant, obtained from Kashier's dashboard. Pass the raw secret key value in the Authorization header (NOT a "Bearer" token).

In: header

Path Parameters

batchId*string

Settlement batch identifier.

Response Body

application/json

application/json

application/json

application/json

application/json

GET
/v3/payment/settlement/batches/{batchId}