KashierDevelopersKashier Developers

Get a payment page payment

curl -X GET "https://test-api.kashier.io/v2/paymentPage/transactions/string"
{  "body": {    "_id": "507f1f77bcf86cd799439012",    "merchantId": "MID-XXXX-XXXX",    "merchantOrderId": "ORDER-001",    "paymentPageName": "Q1 Sales Page",    "firstName": "Ahmed",    "lastName": "Hassan",    "email": "[email protected]",    "amount": 100,    "tax": 0,    "paymentMethod": "card",    "status": "success",    "date": "2026-07-30 09:15:02.117000+00:00"  },  "message": "success"}

Retrieves one payment collected through a payment page, looked up by the order id the page assigned to it.

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

orderId*string

The order identifier of the payment page payment.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

GET
/v2/paymentPage/transactions/{orderId}