Envestnet · Schema

CreditAcceleratorGenerateRequest

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
configName string The config name using which the credit accelerator file generation was requested
requestingFirm object
accountIds array Mention account ids for which credit accelerator file generation is getting requested. mentioned accountid should belong to containers bank or loan or investment
View JSON Schema on GitHub

JSON Schema

envestnet-creditacceleratorgeneraterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditAcceleratorGenerateRequest",
  "title": "CreditAcceleratorGenerateRequest",
  "required": [
    "configName"
  ],
  "type": "object",
  "properties": {
    "configName": {
      "type": "string",
      "description": "The config name using which the credit accelerator file generation was requested"
    },
    "requestingFirm": {
      "$ref": "#/components/schemas/CreditAcceleratorRequestingFirm"
    },
    "accountIds": {
      "type": "array",
      "description": "Mention account ids for which credit accelerator file generation is getting requested. mentioned accountid should belong to containers bank or loan or investment",
      "readOnly": true,
      "items": {
        "type": "integer",
        "format": "int64"
      }
    }
  }
}