In-App Channel Step
The inApp
step allows you to send a message to your user’s <Inbox />
for your web or a mobile app.
In-App Step Output
The body of the inbox notification. The main content of the notification.
The subject of the inbox notification. This property communicates the subject of the notification to the user.
The avatar shown in the inbox notification. When specified, overrides the avatar of the actor initiating the notification.
The redirect object is used to define the URL to visit when interacting with
the notification. This property can be omitted in place of an
onNotificationClick
handler implemented in
the <Inbox />
component.
The URL to visit when clicking on the notification.
The target attribute specifies where the new window or tab will be opened.
This property is optional and defaults to _blank
. The supported values
are: _self, _blank, _parent, _top, _unfencedTop
.
Define a primary action to be shown in the inbox notification. The primary action will appear with an accent color.
The label of the action.
The redirect object is used to define the URL to visit when interacting
with the notification action buttons. This property can be omitted in
place of an onPrimaryActionClick
handler
implemented in the <Inbox />
component.
Define a secondary action to be shown in the inbox notification. The secondary action will appear with a muted color.
The label of the action.
The redirect object is used to define the URL to visit when interacting
with the notification action buttons. This property can be omitted in
place of an onSecondaryActionClick
handler
implemented in the <Inbox />
component.
Custom data to be sent with the notification. This data can be used to
customize the notification item
rendered in the <Inbox />
.
In-App Step Result
A flag indicating if the notification has been seen. This property is useful
when conditionally delivering notifications in subsequent steps via the skip
function. A notification is marked as seen when the user views the
notification.
A flag indicating if the notification has been read. A notification is marked as read when the user confirms the notification.
The date the notification was last seen. This corresponds to the date the
seen
property was set to true
, or null
if the notification has not been
seen.
The date the notification was last read. This corresponds to the date the
read
property was set to true
, or null
if the notification has not been
read.