Notifications
4 posts tagged with "Notifications"
on-notification
The on-notification action event handler for notifications. It belongs to the notifications category within the interaction area.
Action Syntax
on-notification $variable
A variable name starting with $
on-notification @reference
A reference starting with @
on-notification $variable [file]
A variable name starting with $ followed by A file reference
on-notification @reference [file]
A reference starting with @ followed by A file reference
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
on-notification $channel
Action code: 3767581088
Version: 0.6.4-4
Last updated: 2025-06-13
send-notification
function
The send-notification action low level send notification. It belongs to the notifications category within the interaction area.
Action Syntax
send-notification "text"
A quoted text string
send-notification $variable
A variable name starting with $
Return Value
This function returns a
RESPONSE
value that can be stored in a variable:
$result = send-notification
Valid sizes
tiny
small
medium
large
extra
Tags
channel
the channel to send notification on
Examples
// Basic Usage
$response = send-notification "message"
Action code: 139411991
Version: 0.6.4
Last updated: 2025-06-13
subscribe
function
The subscribe action subscribe to app notification channel. It belongs to the notifications category within the interaction area.
Action Syntax
subscribe @reference
A reference starting with @
subscribe $variable
A variable name starting with $
Return Value
This function returns a
RESPONSE
value that can be stored in a variable:
$result = subscribe
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
$response = subscribe @channel
Action code: 2561646562
Version: 0.6.4-3
Last updated: 2025-06-13
unsubscribe
function
The unsubscribe action unsubscribes from notification channel. It belongs to the notifications category within the interaction area.
Action Syntax
unsubscribe @reference
A reference starting with @
unsubscribe $variable
A variable name starting with $
Return Value
This function returns a
RESPONSE
value that can be stored in a variable:
$result = unsubscribe
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
$response = unsubscribe @channel
Action code: 3738004103
Version: 0.6.4-4
Last updated: 2025-06-13