Envestnet · Schema

RenewConsentPreferences

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
id integer preference id for AU Open Banking only.

Endpoints:
  • PUT consents/{consentId}/renewal
value string preference value for AU Open Banking only.

Endpoints:
  • PUT consents/{consentId}/renewal
View JSON Schema on GitHub

JSON Schema

envestnet-renewconsentpreferences-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RenewConsentPreferences",
  "title": "RenewConsentPreferences",
  "required": [
    "id",
    "value"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "preference id for AU Open Banking only.<br><br><b>Endpoints</b>:<ul><li>PUT consents/{consentId}/renewal</li></ul>",
      "format": "int64"
    },
    "value": {
      "type": "string",
      "description": "preference value for AU Open Banking only.<br><br><b>Endpoints</b>:<ul><li>PUT consents/{consentId}/renewal</li></ul>"
    }
  }
}