The account object represents an account held with a financial institution (e.g. a savings account). You can use this object to retrieve specific account details such as the account number, balance and available funds.
Attributes | |
---|---|
| Value is "account". |
| Uniquely identifies the account. |
| Full account number. |
| Account name as defined by institution or user. |
| The currency the funds are stored in, using ISO 4217 standard. |
| Amount of funds in the account right now - excluding any pending transactions. For a credit card this would be zero or the minus amount spent. For an account providing no balance then the value provided by the bank would be passed on which could be null e.g. an insurance account. |
| Funds that are available to an account holder for withdrawal or other use. This may include funds from an overdraft facility or line of credit. As well as funds classified as the available balance, such as from cleared and existing deposits. |
| Timestamp of last update, UTC, RFC 3339 format e.g. "2017-09-28T13:39:33Z" |
| Identifies the account type and product as defined by institution. Possible values for account type are:
|
| An array of date intervals indicating the coverage of the transaction data relating to the account. |
| A property of class object. Product name as defined by institution. |
| A property of For account type
|
| Indicates the account status. Always set to 'available'. Field kept for backward compatibility. Possible values include:
|
| The id of the institution resource the account originated from. |
| The name of the account holder as returned by the institution. No formatting is applied. Returns a string or null when not available. |
| The latest id of the connection resource that was used to retrieve the account. |
| A links object containing the following members:
|
{
"type": "account",
"id": "s55bf3",
"accountNo": "34567834567890",
"name": "Savings 123890",
"currency": "AUD",
"balance": "26978.76",
"availableFunds": "26978.76",
"lastUpdated": "2019-09-28T13:39:33Z",
"class": {
"type": "savings",
"product": "Hooli Saver"
},
"transactionIntervals": [
{
"from": "2019-04-30",
"to": "2021-01-08"
}
],
"status": "available",
"institution": "AU00000",
"accountHolder": "Max Wentworth-Smith",
"connection": "8fce3b",
"links": {
"self": "https://au-api.basiq.io/users/ea3a81/accounts/s55bf3",
"transactions": "https://au-api.basiq.io/users/ea3a81/transactions?filter=account.id.eq('s55bf3')",
"connection": null,
"institution": "https://au-api.basiq.io/institutions/AU00000"
}
}
{
"meta": {
"accountNumber": "60000015744111",
"availableRedraw": "525.28",
"endDate": "2025-05-12T00:00:00Z",
"fee": "waived",
"instalmentAmount": "1768.23",
"interestRate": "4.8",
"interestType": "fixed rate",
"nextInstalmentDate": "2018-02-228T00:00:00Z",
"offsetAccountNumber": "60000045564000",
"repaymentFrequency": "weekly",
"repaymentType": "interest only"
}
}