Skip to main content
Version: 4.60

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
"id"StringThe ID of the reminder.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

Goal: Create a local reminder called "meeting", give it a short description and assing it the time value.

id, title, text, time keys have to be assigned within the params object of the action.

{
"type": "setLocalReminder",
"params": {
"id": "1",
"title": "meeting",
"text": "Feel reminded",
"time": "2024-01-01 15:00:00"
}
}

Result:

A local reminder "meeting" has been set.