KashierDevelopersKashier Developers

Reconcile a terminal's transactions

curl -X POST "https://test-api.kashier.io/v3/payment/pos/reconcile" \  -H "Content-Type: application/json" \  -d '{    "terminalId": "YOUR_TERMINAL_ID",    "reconciliationData": {      "transactionCount": 50,      "totalAmount": "5000.00"    }  }'
{  "status": "string",  "response": {},  "messages": {    "en": "string",    "ar": "string"  }}

Reconciles the transactions your system holds for a POS terminal against the transactions Kashier holds, so the two sides agree before settlement. Send the terminal and the totals you expect.

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

The terminal and the totals your system holds for it.

Response Body

application/json

application/json

application/json

application/json

application/json

POST
/v3/payment/pos/reconcile