action yodlee_create_subscription_notification_event { label: "Subscribe For Notification Event" description: "The subscribe events service is used to subscribe to an event for receiving notifications.
The callback URL, where the notification will be posted should be provided to this service.
If the callback URL is invalid or inaccessible, the subscription will be unsuccessful, and an error will be thrown.
Customers can subscribe to REFRESH,DATA_UPDATES and AUTO_REFRESH_UPDATES event.

Notes:
  • This service is not available in developer sandbox/test environment and will be made available for testing in your dedicated environment, once the contract is signed.
  • The content type has to be passed as application/json for the body parameter.
  • " provider: yodlee method: POST 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:" } } } eventName: { type: "string" enum: ["REFRESH", "DATA_UPDATES", "AUTO_REFRESH_UPDATES"] } } required: ["event", "eventName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }