GET
/recipients
curl \
--request GET 'https://bank.bank.place/recipients' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Workspace-ID: 42"
Response examples (200)
[
{
"accountCode": "string",
"alias": "string",
"createdAt": "string",
"edges": {
"bank": {
"countryCode": "string",
"createdAt": "string",
"id": 42,
"name": "string",
"swiftCode": "string",
"updatedAt": "string"
},
"beneficiary": {
"createdAt": "string",
"data": {},
"id": 42,
"updatedAt": "string"
},
"currency": {
"code": "string",
"createdAt": "string",
"decimals": 42,
"id": 42,
"name": "string",
"swiftMinimumWithdrawalAmount": "string",
"symbol": "string",
"updatedAt": "string"
}
},
"id": 42,
"name": "string",
"saved": true,
"updatedAt": "string"
}
]
Response examples (401)
{
"message": "Invalid request parameters",
"errorCode": "invalid_request"
}