Skip to main content

Getting Debtors

Retrieve the list of registered debtors for a given funds controller.

← 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":"/v1/debtors?FundsControllerCode=E6C0B3B4"}'
Retrieve debtors
curl -X GET "https://api.example.com/v1/debtors?FundsControllerCode=E6C0B3B4" \
-H "rtgs-global-sig: {signature}"
Response
[
{
"AccountAliasId": "3245",
"DebtorName": "Jane Smith",
"DebtorType": "Individual",
"City": "Dublin",
"Country": "Ireland",
"ReconciliationId": "57f21a8b14c84548bdb7f2bc3b0f9053",
"Status": "Active"
}
]