Getting Creditors
Retrieve the list of registered creditors for a given 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":"/v1/creditors?FundsControllerCode=E6C0B3B4"}'
Retrieve creditors
curl -X GET "https://api.example.com/v1/creditors?FundsControllerCode=E6C0B3B4" \
-H "rtgs-global-sig: {signature}"
Response
[
{
"AccountAliasId": "CL0001",
"PayeeName": "Alice Johnson",
"ClientId": "CL0001",
"Country": "IE",
"CurrencyCode": "EUR",
"IsIndividual": true,
"ObfuscatedAccountDetails": "AIB, IE29AIBK93115212345678, AIBKIE2DXXX",
"Status": "Active"
}
]