API Reference - WebPortal.notification.evt.created
WebPortal.notification.evt.created
WebPortal.notification.evt.created
Description | This event is triggered when a webportal notification is successfully created using WebPortal.notification.new. Check out the dedicated tutorial. |
Type | event message. |
Output Data | Type | Description |
---|---|---|
type | String | WebPortal.notification.evt.created |
notifId | String | Id of the notification |
Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
window.addEventListener("message", function(event){
if (typeof event.data !== 'undefined' && typeof event.data.type !== 'undefined' ){
var data = event.data;
var type = event.data.type;
switch(type){
// When a WebPortal Notification is created
case "WebPortal.notification.evt.created":
console.log("[WebPortal Notification] The WebPortal notification has been created.");
console.log("[WebPortal Notification] ID:" + data.notifId +);
break;
}
}
});
See Also
- Method Create a WebPortal Notification: WebPortal.notification.new
- Event Creation Success: WebPortal.notification.evt.created
- Event Creation Error: WebPortal.notification.evt.error
- Event Prompt Overflow: WebPortal.OverflowPopup
- Event NC Notification Opened: WebPortal.notification.show
- Event NC Notifcation: Open App button clicked: WebPortal.notification.evt.click
- Event NC Notification: Delete button clicked: WebPortal.notification.event.close