AccountList Data Type

List of accounts with details.

Properties
name data type constraints description
accounts array of AccountDetails required Get accounts

Example

{
  "accounts" : [ {
    "resourceId" : "...",
    "iban" : "...",
    "bban" : "...",
    "msisdn" : "...",
    "currency" : "...",
    "name" : "...",
    "displayName" : "...",
    "product" : "...",
    "cashAccountType" : "...",
    "status" : "DELETED",
    "bic" : "...",
    "linkedAccounts" : "...",
    "usage" : "...",
    "details" : "...",
    "balances" : [ {
      "balanceAmount" : { },
      "balanceType" : "FORWARDAVAILABLE",
      "creditLimitIncluded" : true,
      "lastChangeDateTime" : 12345,
      "referenceDate" : "...",
      "lastCommittedTransaction" : "..."
    }, {
      "balanceAmount" : { },
      "balanceType" : "INTERIMBOOKED",
      "creditLimitIncluded" : true,
      "lastChangeDateTime" : 12345,
      "referenceDate" : "...",
      "lastCommittedTransaction" : "..."
    } ],
    "_links" : {
      "property1" : { },
      "property2" : { }
    },
    "ownerName" : "..."
  }, {
    "resourceId" : "...",
    "iban" : "...",
    "bban" : "...",
    "msisdn" : "...",
    "currency" : "...",
    "name" : "...",
    "displayName" : "...",
    "product" : "...",
    "cashAccountType" : "...",
    "status" : "ENABLED",
    "bic" : "...",
    "linkedAccounts" : "...",
    "usage" : "...",
    "details" : "...",
    "balances" : [ {
      "balanceAmount" : { },
      "balanceType" : "INTERIMAVAILABLE",
      "creditLimitIncluded" : true,
      "lastChangeDateTime" : 12345,
      "referenceDate" : "...",
      "lastCommittedTransaction" : "..."
    }, {
      "balanceAmount" : { },
      "balanceType" : "INTERIMAVAILABLE",
      "creditLimitIncluded" : true,
      "lastChangeDateTime" : 12345,
      "referenceDate" : "...",
      "lastCommittedTransaction" : "..."
    } ],
    "_links" : {
      "property1" : { },
      "property2" : { }
    },
    "ownerName" : "..."
  } ]
}