Skip to main content

Financial Reports API

List of API

APIPurpose
POST
/token
Authentication
POST
/v2/reports/query
Request daily itemised report
Request cycle summary data
Request daily summary data
Request monthly summary data

Refer to the API Reference page here.


Pre-Requisite: Authentication




StepSenderReceiverProcess
1ParticipantPayNetCall API to request for token
2PayNetParticipantAPI responds with token and token expiry

Sample Request

curl --request POST \
--url https://api.reports.paynet.my/token \
--header 'Accept: application/json' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data grant_type=client_credentials \
--data client_id=client_123456789 \
--data client_secret=secret_abcdefghijklmnop

Sample Response

{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer",
"expires_in": 3600
}
info

The access token received from the authorization server will last for 1 hour. Once the token expires, you'll need to request a new token by repeating the same authentication process. (Subject to change)


Itemised Report



StepSenderReceiverProcess
1ParticipantPayNetSend the report request, with report ID, date, etc.
PayNetParticipantAPI responds with status e.g. new/in-progress/error
2ParticipantPayNetPoll the report request status via the same request API
PayNetParticipantAPI responds with status ready and the 1-time URL for report download
3ParticipantPayNetRequest to download report via the given URL
Report TypeOutput format
Daily Itemised Transactional ReportCSV

Sample GraphQL Request

{
query {
Report($input: ReportParam) {
status
url
expiry
checksum {
rows
size
md5hash
}
}
}
}

ReportParam

ReportParam {
product String!
report String!
date String!
fields []String!
}

ParameterDescriptionExample Value
productProduct IndicatorMYD - MyDebit
RPP - RPP
reportReport Type or IdentifierI01 - itemized report
dateThe transaction date for the report2025-02-15 - date in yyyy-MM-dd format
fieldsList of fields requested. The CSV file will be generated based on the list and ordering given in the list

Sample Response

HTTP/1.1 200 OK
X-Request-Id: <UUID>
Content-Type: application/json

{
"data": {
"Report": {
"status": "ready",
"url": "https://fileservice-hostname/files/unique-tracking-id?hash=???",
"expiry": "2025-02-15T12:00:00Z",
"checksum": {
"rows": 1000,
"size": 1024876,
"md5hash": "abc123def456"
}
}
}
}

Summary Report




StepSenderReceiverProcess
1ParticipantPayNetSend the report request, with report ID, date, cycle, etc.
2PayNetParticipantReturn requested data in JSON format
Report TypeOutput format
  • Cycle 1 Summary
  • Cycle 2 Summary
  • Daily Summary
  • Monthly Summary
JSON

Sample GraphQL Request

query MYD {
MYD {
M01(month: "2026-02") {
fiid
month
daily {
settlement_date
detail {
debit_volume
debit_amount
debit_interchange_fee
debit_interchange_fee_tax
debit_interchange_fee_tax_code
debit_network_fee
debit_network_fee_tax
debit_network_fee_tax_code
credit_volume
credit_amount
credit_interchange_fee
credit_interchange_fee_tax
credit_interchange_fee_tax_code
net_total
}
}
services {
transaction_type
detail {
debit_volume
debit_amount
debit_interchange_fee
debit_interchange_fee_tax
debit_interchange_fee_tax_code
debit_network_fee
debit_network_fee_tax
debit_network_fee_tax_code
credit_volume
credit_amount
credit_interchange_fee
credit_interchange_fee_tax
credit_interchange_fee_tax_code
net_total
}
}
total {
debit_volume
debit_amount
debit_interchange_fee
debit_interchange_fee_tax
debit_interchange_fee_tax_code
debit_network_fee
debit_network_fee_tax
debit_network_fee_tax_code
credit_volume
credit_amount
credit_interchange_fee
credit_interchange_fee_tax
credit_interchange_fee_tax_code
net_total
}
}
}
}

Pass-in Parameters

ParameterDescriptionPossible Values
1productProduct indicatorMYD - MyDebit
RPP - RPP
2reportType of reportS01 - Cycle 1 Summary
S02 - Cycle 2 Summary
D01 - Daily Summary
M01 - Monthly Summary
3date / monthSettlement date or month

For report type S01, S02, and D01:
date: yyyy-MM-dd

For report type M01:
month: yyyy-MM
For report type S01, S02, and D01:
date: “2026-01-01”

For report type M01:
month: “2026-01”
4fiid
  • Institution ID
  • Participant ID
PYNB

Sample Response

{
"data": {
"MYD": {
"M01": {
"fiid": "PYNB",
"month": "2026-02",
"daily": [
{
"settlement_date": "2026-02-01",
"detail": {
"debit_volume": 0,
"debit_amount": "0.00",
"debit_interchange_fee": "0.00",
"debit_interchange_fee_tax": "0.00",
"debit_interchange_fee_tax_code": "",
"debit_network_fee": "0.00",
"debit_network_fee_tax": "0.00",
"debit_network_fee_tax_code": "",
"credit_volume": 0,
"credit_amount": "0.00",
"credit_interchange_fee": "0.00",
"credit_interchange_fee_tax": "0.00",
"credit_interchange_fee_tax_code": "",
"net_total": "0.00"
}
},
{
"settlement_date": "2026-02-02",
"detail": {
"debit_volume": 0,
"debit_amount": "0.00",
"debit_interchange_fee": "0.00",
"debit_interchange_fee_tax": "0.00",
"debit_interchange_fee_tax_code": "",
"debit_network_fee": "0.00",
"debit_network_fee_tax": "0.00",
"debit_network_fee_tax_code": "",
"credit_volume": 0,
"credit_amount": "0.00",
"credit_interchange_fee": "0.00",
"credit_interchange_fee_tax": "0.00",
"credit_interchange_fee_tax_code": "",
"net_total": "0.00"
}
}
],
"services": [
{
"transaction_type": "PUR",
"detail": {
"debit_volume": 0,
"debit_amount": "0.00",
"debit_interchange_fee": "0.00",
"debit_interchange_fee_tax": "0.00",
"debit_interchange_fee_tax_code": "",
"debit_network_fee": "0.00",
"debit_network_fee_tax": "0.00",
"debit_network_fee_tax_code": "",
"credit_volume": 0,
"credit_amount": "0.00",
"credit_interchange_fee": "0.00",
"credit_interchange_fee_tax": "0.00",
"credit_interchange_fee_tax_code": "",
"net_total": "0.00"
}
},
{
"transaction_type": "RTRN",
"detail": {
"debit_volume": 0,
"debit_amount": "0.00",
"debit_interchange_fee": "0.00",
"debit_interchange_fee_tax": "0.00",
"debit_interchange_fee_tax_code": "",
"debit_network_fee": "0.00",
"debit_network_fee_tax": "0.00",
"debit_network_fee_tax_code": "",
"credit_volume": 0,
"credit_amount": "0.00",
"credit_interchange_fee": "0.00",
"credit_interchange_fee_tax": "0.00",
"credit_interchange_fee_tax_code": "",
"net_total": "0.00"
}
}
],
"total": {
"debit_volume": 101881,
"debit_amount": "6303797.29",
"debit_interchange_fee": "0.00",
"debit_interchange_fee_tax": "0.00",
"debit_interchange_fee_tax_code": "",
"debit_network_fee": "3393.83",
"debit_network_fee_tax": "0.00",
"debit_network_fee_tax_code": "",
"credit_volume": 0,
"credit_amount": "0.00",
"credit_interchange_fee": "5215.42",
"credit_interchange_fee_tax": "0.00",
"credit_interchange_fee_tax_code": "",
"net_total": "6301975.70"
}
}
}
}
}

Data Availability Cycles via API

RPP

Product CycleReport Contains Transactions BetweenTentative Data Availability Time*
Cycle 1 Summary00:00:00 to 13:59:59 every calendar day15:30 (T+0)
01:30 (T+1)
Cycle 2 Summary14:00:00 to 23:59:59 every calendar day15:30 (T+0)
01:30 (T+1)
Daily Itemised00:00:00 to 23:59:59 every calendar day04:00 (T+1)
Daily Summary01:30 (T+1)
Monthly Summary00:00:00 on first calendar day of the month to 23:59:59 on last calendar day of the month01:30 (T+1M)
Note: * refers to report cycle, and does not relate to settlement for RPP

MyDebit

Product CycleReport Contains Transactions BetweenTentative Data Availability Time*
Cycle 1 Summary00:00:00 to 14:29:59 every calendar day15:30 (T+0)
01:30 (T+1)
Cycle 2 Summary14:30:00 to 23:59:59 every calendar day15:30 (T+0)
01:30 (T+1)
Daily Itemised00:00:00 to 23:59:59 every calendar day04:00 (T+1)
Daily Summary01:30 (T+1)
Monthly Summary00:00:00 on first calendar day of the month to 23:59:59 on last calendar day of the month01:30 (T+1M)

Note

Data Availability cycles for retrieval are subject to change. The final retrieval cycles will be documented in the Operational Procedure at a later stage.