Envestnet · Schema

VerifyAccountRequest

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
container string
accountId integer
transactionCriteria array
View JSON Schema on GitHub

JSON Schema

envestnet-verifyaccountrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerifyAccountRequest",
  "title": "VerifyAccountRequest",
  "required": [
    "transactionCriteria"
  ],
  "type": "object",
  "properties": {
    "container": {
      "type": "string",
      "enum": [
        "bank",
        "creditCard",
        "investment",
        "insurance",
        "loan",
        "reward",
        "bill",
        "realEstate",
        "otherAssets",
        "otherLiabilities"
      ]
    },
    "accountId": {
      "type": "integer",
      "format": "int64"
    },
    "transactionCriteria": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VerifyTransactionCriteria"
      }
    }
  }
}