Business accounts

Index accounts for a business

Returns an array containing all accounts owned by the business specified in the request URL.

get/v1/businesses/{business_id}/accounts

Path parameters

business_idstring required

Query parameters

page[number]string

The number of results pages to return.

page[size]string

The size of each results page.

filter[iban]string

Filter on Iban

Response

The operation was successful.

idstring

ID of the account.

ibanstring

IBAN associated with the account.

bicstring

BIC associated with the account.

type'CHECKING_PERSONAL' | 'CHECKING_BUSINESS'

Type of the account.

purposestring

purpose of account

currencystring

currency of account

opened_atstring

Date and time when the account was opened (UTC format).

locking_status'NO_BLOCK' | 'CREDIT_BLOCK' | 'DEBIT_BLOCK' | 'BLOCK'

Read-only booking block indicating whether funds can be transferred to/from the account. The default status is NO_BLOCK. Other status values indicate that funds may neither be credited to, nor debited from, the account. Only authorized Solaris employees can change the status of this value. Attempting to perform an action not compliant with the current blocking status (e.g., initiating a transaction to or from a blocked account) will cause either a return of the transaction or an exception.

locking_reasonsstring[]

Read-only indicator of the reason a block was applied to the account. If the account is not blocked, then this value will contain an empty array.

person_idstring

ID of the person for whom the account was created.

business_idstring

ID of the business for whom the account was created. Only filled if the account owner is a legal entity.

Example response

[
  {
    "id": "5526853938474f3e92b22a03ea57a544cacc",
    "iban": "DE76110101001100000999",
    "bic": "SOBKDEBBXXX",
    "type": "CHECKING_PERSONAL",
    "currency": "EUR",
    "opened_at": "2017-10-11T22:33:26Z",
    "account_limit": {
      "value": 100000,
      "unit": "cents",
      "currency": "EUR"
    },
    "person_id": "bb66a0161a0a4066abfe133412f6236dcper",
    "business_id": "a9a25dc10aa74244bd0bb75d1ce6b3b5cbiz",
    "overdraft": {
      "rate": 12.5,
      "limit": 10000
    }
  }
]