Concept
Notifications
Define settings on how the system should notify the users when publishing and updating published content (push notifications require Native Apps to be enabled).
The notifications field inside of a request holds notification settings set. It contains sendNotification
, sendPushNotification
& forceInstantPush
.
Property | Value | Description |
---|---|---|
sendNotification | boolean |
Determines whether notifications should be sent. |
sendPushNotification | boolean |
Determines whether push notifications should be sent. In order to send push notifications, sendNotification should also be set to true. |
forceInstantPush | boolean |
If set to true, the push message will be sent instantly (ignores push message time schedule). In order to force push notifications, both previously mentioned notification properties must be also set to true. |
Please note: Depending on global and module settings it may not be possible to create notifications.
Example:
Json
{
"sendNotification": false,
"sendPushNotification": false,
"forceInstantPush": false
}