KashierDevelopersKashier Developers

Get one terminal transaction

curl -X GET "https://test-api.kashier.io/v3/payment/pos/YOUR_TERMINAL_ID/transactions/string"
{  "body": {    "response": {      "merchant_order_id": "string",      "ref_number": "string",      "amount": 0,      "currency": "string",      "payment_type": "string",      "entry_mode": "string"    }  },  "status": "string"}

Retrieves the details of a single card-present transaction processed on one of your POS terminals.

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.

transactionId*string

Kashier's transaction ID, as returned in the transactions list or in the POS webhook.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

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