action yodlee_update_preferences { label: "Update Preferences" description: "This endpoint is used to update preferences like data extracts and auto refreshes without triggering refresh for the providerAccount.
Setting isDataExtractsEnabled to false will not trigger data extracts notification and dataExtracts/events will not reflect any data change that is happening for the providerAccount.
Modified data will not be provided in the dataExtracts/userData endpoint.
Setting isAutoRefreshEnabled to false will not trigger auto refreshes for the provider account.
" provider: yodlee method: PUT path: "/providerAccounts/{providerAccountId}/preferences" encoding: json input: { type: "object" properties: { preferences: { type: "object" properties: { isAutoRefreshEnabled: { type: "boolean" description: "Indicates if auto-refreshes have to be triggered for the provider account.

Endpoints:" } isDataExtractsEnabled: { type: "boolean" description: "Indicates if the updates to the provider account should be part of the data extracts event notification or the data extract data retrieval service.

Endpoints:" } linkedProviderAccountId: { type: "integer" format: "int64" description: "LinkedproviderAccountd is a providerAccountId linked by the user to the primary provider account.
LinkedProviderAccountId and the providerAccountId belongs to the same institution.

Endpoints:" } } } providerAccountId: { type: "integer" format: "int64" } } required: ["providerAccountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }