Headers
-
Correlation header to be set in a request and retrieved in the relevant response
GET
/api/v1/trusted-beneficiaries
curl \
-X GET https://iban.nash.io/api/v1/trusted-beneficiaries \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "X-Request-ID: string"
Response examples (200)
{
"_links": {
"self": {
"href": "/v1/accounts"
}
},
"beneficiaries": [
{
"creditor": {
"currency": "EUR",
"iban": "YY64COJH41059545330222956960771321"
},
"creditor_account": {
"currency": "EUR",
"iban": "YY64COJH41059545330222956960771321"
},
"id": "69581b46-bcc4-4361-b471-69205f24bc56",
"is_trusted": true
}
]
}
Response examples (200)
{
"_links": {
"self": {
"href": "/v1/accounts"
}
},
"beneficiaries": [
{
"id": "69581b46-bcc4-4361-b471-69205f24bc56",
"creditor": {
"iban": "YY64COJH41059545330222956960771321",
"currency": "EUR"
},
"is_trusted": true,
"creditor_account": {
"iban": "YY64COJH41059545330222956960771321",
"currency": "EUR"
}
}
]
}