action yodlee_update_subscribed_notification_event {
label: "Update Notification Subscription"
description: "The update events service is used to update the callback URL.
If the callback URL is invalid or inaccessible, the subscription will be unsuccessful, and an error will be thrown.
Note:
The content type has to be passed as application/json for the body parameter.
"
provider: yodlee
method: PUT
path: "/configs/notifications/events/{eventName}"
encoding: json
input: {
type: "object"
properties: {
event: {
type: "object"
properties: {
callbackUrl: {
type: "string"
description: "URL to which the notification should be posted.
Endpoints:- GET configs/notifications/events
"
}
}
}
eventName: {
type: "string"
enum: ["REFRESH", "DATA_UPDATES", "AUTO_REFRESH_UPDATES"]
}
}
required: ["event", "eventName"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}