Getting Accounts
Retrieve the accounts associated with your participant, including their status, currency, and linked funds controller.
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":"/v3/accounts"}'
Retrieve your accounts
curl -X GET "https://api.example.com/v3/accounts" \
-H "rtgs-global-sig: {signature}"
Response
[
{
"Id": { "IBAN": "GB29NWBK60161331926819" },
"Owner": {
"Nm": "Acme Corp",
"Id": { "OrgId": { "Othr": { "Id": "RTGS:B:GB78901234", "Issr": "RTGS.global" } } }
},
"AccountFundsController": {
"Nm": "Bank of England",
"Cd": "BOE1",
"JurisdictionCode": "gbsdev",
"Sts": "Active",
"Ctry": "GB",
"Ccys": ["GBP"]
},
"Ccy": "GBP",
"Sts": "Active"
}
]