KashierDevelopersKashier Developers

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
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

terminalId*string

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

GET
/v3/payment/pos/{terminalId}/transactions