action yodlee_get_data_extracts_events { label: "Get Events" description: "The get extracts events service is used to learn about occurrences of data extract related events. This service currently supports only the DATA_UPDATES event.
Passing the event name as DATA_UPDATES provides information about users for whom data has been modified in the system for the specified time range. To learn more, please refer to the dataExtracts page.
You can retrieve data in increments of no more than 60 minutes over the period of the last 7 days from today's date.
This service is only invoked with either admin access token or a cobrand session.
" provider: yodlee method: GET path: "/dataExtracts/events" encoding: json input: { type: "object" properties: { eventName: { type: "string" } fromDate: { type: "string" } toDate: { type: "string" } } required: ["eventName", "fromDate", "toDate"] additionalProperties: false } output: { type: "object" additionalProperties: true } }