Envestnet · Schema

FullAccountNumbers

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
paymentAccountNumber string The payment account number is used for payments in all regions, this may be looked as an ACH account number in the US.
Endpoints:
  • GET /partner/paymentProcessor/account
unmaskedAccountNumber string The unmasked account number is same as account number that is used to refer to an account and is not partial or masked.
Endpoints:
  • GET /partner/paymentProcessor/account
View JSON Schema on GitHub

JSON Schema

envestnet-fullaccountnumbers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FullAccountNumbers",
  "title": "FullAccountNumbers",
  "type": "object",
  "properties": {
    "paymentAccountNumber": {
      "type": "string",
      "description": "The payment account number is used for payments in all regions, this may be looked as an ACH account number in the US.<br><b>Endpoints</b>:<ul><li>GET /partner/paymentProcessor/account</li></ul>",
      "readOnly": true
    },
    "unmaskedAccountNumber": {
      "type": "string",
      "description": "The unmasked account number is same as account number that is used to refer to an account and is not partial or masked.<br><b>Endpoints</b>:<ul><li>GET /partner/paymentProcessor/account</li></ul>",
      "readOnly": true
    }
  }
}