Envestnet · Schema

LoanPayoffDetails

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
payByDate string The date by which the payoff amount should be paid.

Account Type: Aggregated
Applicable containers: loan
Endpoints:
  • GET accounts
  • GET accounts/{accountI
payoffAmount object
outstandingBalance object
View JSON Schema on GitHub

JSON Schema

envestnet-loanpayoffdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoanPayoffDetails",
  "title": "LoanPayoffDetails",
  "type": "object",
  "properties": {
    "payByDate": {
      "type": "string",
      "description": "The date by which the payoff amount should be paid.<br><br><b>Account Type</b>: Aggregated<br><b>Applicable containers</b>: loan<br><b>Endpoints</b>:<ul><li>GET accounts</li><li>GET accounts/{accountId}</li></ul>",
      "readOnly": true
    },
    "payoffAmount": {
      "$ref": "#/components/schemas/Money"
    },
    "outstandingBalance": {
      "$ref": "#/components/schemas/Money"
    }
  }
}