Skip to main content
Version: 4.62

setLocalReminder

Sets a reminder with the specified title and text to be displayed at the specified time.

note

This message is presented to the user in a similar way to a push notification. Depending on the operating system and personal system settings, it is possible for these messages to be received after the intended point in time.

Field Configurations

KeyTypeDescriptionDefault Value
"params" (required)Objectundefinednull

Parameters

KeyTypeDescriptionDefault Value
"async"BooleanSpecifies whether the action should perform asynchronously.null
"channel"StringThe channel for the notification.null
"id"StringThe ID of the reminder.null
"image"StringThe image for the notification.null
"notificationSound"StringThe sound for the notification.null
"payload"ObjectThe action to perform when this notification is tapped.null
"text" (required)StringThe text of the reminder.null
"time" (required)StringThe time of the reminder.null
"title" (required)StringThe title of the reminder.null

Inherited

From Base Action

Base Action

Field Configurations

KeyTypeDescriptionDefault Value
"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null
"leadingDelimiter"StringThe leading mustache delimiter to use.null
"params"Object,ArrayObject containing the properties of the action.null
"trailingDelimiter"StringThe trailing mustache delimiter to use.null
"type"StringType name of the action.null

Examples

Example 1: Create a local reminder with dynamic params

Show ExampleHide Example

Set a local reminder for 5 seconds in the future.

{
"type": "setLocalReminder",
"leadingDelimiter": "{$",
"trailingDelimiter": "$}",
"dynamicParams": {
"dynamicTime": {
"left": {
"left": {
"context": "date"
},
"transform": "add",
"right": {
"value": 5000
}
},
"transform": "formatDate",
"right": "YYYY-MM-dd HH:mm:ss"
}
},
"params": {
"id": "demonstration",
"title": "Your Reminder",
"text": "Forgot someting?",
"time": "{$dynamicTime$}"
}
}
The app showing the results of the sample code from Example 1.The app showing the results of the sample code from Example 1.

Example 1: Create a local reminder with a static time

Show ExampleHide Example

Set a local reminder for a specific time.

{
"type": "setLocalReminder",
"params": {
"id": "meetingReminder",
"title": "Meeting",
"text": "in the conference room",
"time": "2026-07-28 15:00:00"
}
}