action yodlee_delete_subscribed_event {
label: "Delete Subscription"
description: "Refer DELETE /configs/notifications/events/{eventName}.
The delete events service is used to unsubscribe from an events service.
"
provider: yodlee
method: DELETE
path: "/cobrand/config/notifications/events/{eventName}"
encoding: json
input: {
type: "object"
properties: {
eventName: {
type: "string"
enum: ["REFRESH", "DATA_UPDATES", "AUTO_REFRESH_UPDATES"]
}
}
required: ["eventName"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}