Envestnet · Schema

CreditAcceleratorFileResponse

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
configName string The config name using which the credit accelerator file generation was requested
reportId integer Unique identifier for the credit accelerator file
submissionDate string Date on which the request to generate credit accelerator file was submitted
originalReportId integer Report id of original report on which refresh is performed. This is not available when report is generated for the first time.
status string Generation status of the requested credit accelerator file requested
View JSON Schema on GitHub

JSON Schema

envestnet-creditacceleratorfileresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditAcceleratorFileResponse",
  "title": "CreditAcceleratorFileResponse",
  "type": "object",
  "properties": {
    "configName": {
      "type": "string",
      "description": "The config name using which the credit accelerator file generation was requested",
      "readOnly": true
    },
    "reportId": {
      "type": "integer",
      "description": "Unique identifier for the credit accelerator file",
      "format": "int64",
      "readOnly": true
    },
    "submissionDate": {
      "type": "string",
      "description": "Date on which the request to generate credit accelerator file was submitted",
      "readOnly": true
    },
    "originalReportId": {
      "type": "integer",
      "description": "Report id of original report on which refresh is performed. This is not available when report is generated for the first time.",
      "format": "int64",
      "readOnly": true
    },
    "status": {
      "type": "string",
      "description": "Generation status of the requested credit accelerator file requested",
      "readOnly": true,
      "enum": [
        "SUBMITTED",
        "IN_PROGRESS",
        "COMPLETED",
        "FAILED"
      ]
    }
  }
}