Skip to main content
GET
/
account
/
details
/
{account}
Receive bank detailes for the account
curl --request GET \
  --url https://client-api.dev.finhost.io/account/details/{account} \
  --header 'Authorization: Bearer <token>'
[
  {
    "provider": "reilsBank",
    "account": "39eab26c-8788-4375-810c-9807aaf98191",
    "bankDetails": [
      {
        "key": "iban",
        "value": "GB68PAYR04034497484799"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account
string
required

Account ID

Query Parameters

companyId
string

Company id

Response

200 - application/json

200 response

provider
string
required

Account bank details provider

Example:

"reilsBank"

account
string<uuid>
required

Account ID

Example:

"39eab26c-8788-4375-810c-9807aaf98191"

bankDetails
object[]
required