Retrieve a list of bank accounts associated with a specific customer.
GET
/customers/{customerId}/bankaccounts
curl \
--request GET 'https://rest.api.24sevenoffice.com/v1/customers/{customerId}/bankaccounts' \
--header "Authorization: string"
Response examples (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string
# Payload
[
{
"number": "string",
"type": "bban",
"isDefault": true,
"name": "string",
"countryCode": "string",
"address": "string",
"bsc": "string",
"bic": "string"
}
]