Envestnet · Schema

UpdateConsentRequest

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
preferences object
scopeId array Applicable Open Banking data cluster values.

Endpoints:
  • PUT Consent
clientTrustedAdvisor array describes information of client trusted advisor
View JSON Schema on GitHub

JSON Schema

envestnet-updateconsentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateConsentRequest",
  "title": "UpdateConsentRequest",
  "required": [
    "clientTrustedAdvisor"
  ],
  "type": "object",
  "properties": {
    "preferences": {
      "$ref": "#/components/schemas/RenewConsentPreferences"
    },
    "scopeId": {
      "type": "array",
      "description": "Applicable Open Banking data cluster values.<br><br><b>Endpoints</b>:<ul><li>PUT Consent</li></ul>",
      "items": {
        "type": "string",
        "enum": [
          "ACCOUNT_DETAILS",
          "TRANSACTION_DETAILS",
          "STATEMENT_DETAILS",
          "CONTACT_DETAILS"
        ]
      }
    },
    "clientTrustedAdvisor": {
      "type": "array",
      "description": "describes information of client trusted advisor",
      "items": {
        "$ref": "#/components/schemas/ClientTrustedAdvisor"
      }
    }
  }
}