Skip to main content

Getting Transactions

Retrieve transactions for an account, optionally filtered by date range.

← All recipes
Sign the request
curl -X POST "https://signing.api.example.com/v1/sign" \
-H "Content-Type: application/json" \
-d '{"SignFor":"RTGS:G:BL12345678","Method":"GET","PathAndQuery":"/v2/Transactions?AccountIdentificationIban=GB29NWBK60161331926819"}'
Retrieve transactions
curl -X GET "https://api.example.com/v2/Transactions?AccountIdentificationIban=GB29NWBK60161331926819" \
-H "rtgs-global-sig: {signature}"
Response
{
"MsgHdr": {
"MsgId": "e13d0d1829774034abba4bd71c57a37f",
"CreDtTm": "2024-01-23T11:08:17.575Z"
},
"RptOrErr": {
"BizRpt": {
"TxRpt": [
{
"PmtId": {
"TxId": "a5d03ee8-2f27-4763-b1ae-44fea23444e4",
"UETR": "acd8867c-6145-4a3e-8036-a2c5e6e1b376"
},
"TxOrErr": {
"Tx": {
"CdtDbtInd": "CRDT",
"Pmt": {
"Sts": [{ "Cd": { "Fnl": "STLD" }, "DtTm": { "DtTm": "2024-01-23T12:05:00Z" } }],
"IntrBkSttlmAmt": { "AmtWthtCcy": "10000.00" }
}
}
}
}
]
}
}
}