List
Get list of payment records
By default, it return all payment records through the current interface. You can query based on status, date and date range.
GET https://{base_url}/v1/transactions/listSample Command
curl -H "Authorization: Bearer {auth_token}" https://{base_url}/v1/transactions/listParameters
Parameter
Description
status
Search payment records by payment status
start_date
Search payment records by the start date. This will return the payment records from start date until recent.
e.g start_date: 18 September 2025
end_date
Search payment records by the end date. This will return the payment records until end date.
e.g end_date: 20 September 2025
start_date, end_date
Search payment records by the date range. This will return the payment records from the start date until end date.
e.g start_date: 18 September 2025, end_date: 18 September 2025
Response
[
{
"id": 592,
"uuid": "a352100a-4652-4f85-9ff0-789f9a0b3658",
"tenant_id": 1,
"payment_intent_id": 910,
"account_id": 66,
"gateway_id": 1,
"interface_id": 195,
"reference_number": "PYMTRNYZNS1758176376",
"order_number": "20250918141936420",
"tax_id_number": null,
"transaction_number": "PYMTINTKOLVP1758176376",
"amount_cents": 300,
"amount_currency": "MYR",
"fee_amount_cents": 220,
"fee_amount_currency": "MYR",
"net_amount_cents": 80,
"net_amount_currency": "MYR",
"partner_uuid": null,
"request_payload": {
"fpx_buyerId": null,
"fpx_msgType": "AR",
"fpx_version": "7.0",
"fpx_checkSum": "6E544B8DF7D1FC4E693E97929C1F692053071E6D5A4E5901F52B3927DEF542173D60F710DF1AA7ADE160A4D2101277B0497A8E06DBAF6F09A29CBD610DB829E2D3AB76E1C7118A6E4F02AEBC6737CFB4897638AA6E94740F20A1935D52AB4B4F9A9045AE7BC119309F6CA67FE1F27B73BFBEF29D9D76D9A4193890321C51D08D178A3B889B44DCD64F90F20982F14095B57F4A7338E3EFFB7E61D37898DF6F5B5D791C9870231A677B2955A6BD3D03953FF93A4BC5C8DAD5E04F3362D0D1808A51B270F85899F52A24C078904FFFEDD02FA2D66155FB4F444640D0C365E95426D4E839E636302798A931711395CFA18E3D36BFBF3152C133502BE50621C181DD",
"fpx_msgToken": "01",
"fpx_sellerId": "SE00013099",
"fpx_buyerIban": null,
"fpx_buyerName": "afiq",
"fpx_makerName": null,
"fpx_txnAmount": "3.0",
"fpx_buyerAccNo": null,
"fpx_buyerEmail": "[email protected]",
"fpx_sellerExId": "EX00011600",
"fpx_buyerBankId": "TEST0021",
"fpx_productDesc": "Sample",
"fpx_txnCurrency": "MYR",
"fpx_sellerOrderNo": "20250918061936",
"fpx_sellerTxnTime": "20250918061936",
"fpx_sellerBankCode": "01",
"fpx_buyerBankBranch": null,
"fpx_sellerExOrderNo": "PYMTINTKOLVP1758176376"
},
"response_payload": {},
"metadata": {
"bank_code": "TEST0021",
"bank_type": "b2c",
"charge_mode": "credit"
},
"initiated_by": null,
"failure_reason": null,
"environment": "sandbox",
"status": "failed",
"discarded_at": null,
"created_at": "2025-09-18T06:19:36.738Z",
"updated_at": "2025-09-18T06:19:44.653Z"
}Last updated
