Envestnet · Schema

CreditAcceleratorPaymentProfile

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
identifier object
address array The address of the lender to which the monthly payments or the loan payoff amount should be paid.
Additional Details:The address field applies only to the student loan account type.
A
paymentBankTransferCode array The additional information for payment bank transfer code.

Applicable containers: loan
Endpoints:
  • GET accounts
  • GET accounts/{accountId}
View JSON Schema on GitHub

JSON Schema

envestnet-creditacceleratorpaymentprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditAcceleratorPaymentProfile",
  "title": "CreditAcceleratorPaymentProfile",
  "type": "object",
  "properties": {
    "identifier": {
      "$ref": "#/components/schemas/PaymentIdentifier"
    },
    "address": {
      "type": "array",
      "description": "The address of the lender to which the monthly payments or the loan payoff amount should be paid. <br><b>Additional Details:</b>The address field applies only to the student loan account type.<br><b>Account Type</b>: Aggregated<br><b>Applicable containers</b>: loan<br><b>Endpoints</b>:<br><ul><li>GET accounts</li><li>GET accounts/{accountId}</li></ul>",
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAccountAddress"
      }
    },
    "paymentBankTransferCode": {
      "type": "array",
      "description": "The additional information for payment bank transfer code.<br><br><b>Applicable containers</b>: loan<br><b>Endpoints</b>:<ul><li>GET accounts</li><li>GET accounts/{accountId}</li></ul>",
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorPaymentBankTransferCode"
      }
    }
  }
}