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 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
Settlement batch identifier.
Response Body
application/json
application/json
application/json
application/json
application/json
Get a batch within a settlement window GET
Retrieves one batch of one settlement window. This is the last step of reconciling a single order: read the order's settlementWindowId and settlementBatchId from the transaction, then fetch the bat…
Export settlement batch transactions GET
Exports the transactions inside settlement batches as a spreadsheet, one row per transaction with its selling fees, VAT, settlement amount, ready-for-settlement date, method, and channel. This is t…