Fetch the bank accounts of the current user

GET /users/{user_id}/bank_accounts

Fetch the bank accounts of the current user.

Path parameters

  • user_id string Required

    User id

Responses

  • 200

    The bank accounts of the current user

    Hide response attributes Show response attributes object
    • id string(uuid)
    • iban string
    • bic string
    • bank_name string
    • account_owner string
  • 404

    Resource not found.

GET /users/{user_id}/bank_accounts
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/bank_accounts
Response examples (200)
{
  "id": "string",
  "iban": "string",
  "bic": "string",
  "bank_name": "string",
  "account_owner": "string"
}
Response examples (200)
{
  "id": "string",
  "iban": "string",
  "bic": "string",
  "bank_name": "string",
  "account_owner": "string"
}