List a terminal's transactions
curl -X GET "https://test-api.kashier.io/v3/payment/pos/YOUR_TERMINAL_ID/transactions"{ "body": { "response": { "terminalId": "string", "transactions": [ { "merchant_order_id": "string", "ref_number": "string", "amount": 0, "currency": "string", "payment_type": "string", "entry_mode": "string" } ] } }, "status": "string"}Retrieves the card-present transactions processed on one of your POS terminals. The gateway passes the request through to the transaction manager unchanged, so the rows carry the same fields as the POS transaction list in the dashboard.
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
The terminal ID (ISO 8583 DE 41) of one of your POS terminals.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
Generate a POS payment QR code POST
Generates a QR code that a customer scans with their phone to open a Kashier hosted payment page for the order, instead of presenting a card at the terminal. The response carries the QR image as a…
Get one terminal transaction GET
Retrieves the details of a single card-present transaction processed on one of your POS terminals.