Using Flextudio's Notification Feature

<aside> https://api.flextudio.com/v1/sendNotice

</aside>

Parameter Name Type Description
fAppID string ID of the receiving app
fBaseCompanyID
(or fBaseCompanyNo) string fBaseCompanyID:
Sending tenant (server) ID → CompanyID =_TCAFlexClientMsttable'sCompanyID(or fBaseCompanyNo:
Sending tenant (server) No → Displayed under tenant name in Workspace - Customer Management)
fBaseUserNo string Sender's fBaseUserNo
Found under username in Tenant Page → User Management
receiverList Array List of recipient fBaseUserNo
title string Notification title
bodyContent string Content
actionJson Object/Array
Array format not available when using linkParam property Content to be executed through notification message - properties below are optional, case-insensitiveWhen you want to open a specific scenario in the app after user clicks push notification with data- scenario: Scenario ID you want to open via push or notification

Sample when actionJson is Object type

How to view ActionJson as inner block when querying notifications when actionJson is Object type

Example of utilizing linkParam received through notification

//Perform the following in the init event of the step you want to open
_c.activeSector.id = _base.linkParam;

//Initialize linkParam value to distinguish when returning to this step
_base.linkParam = null;
_base.link.init()

Sample when actionJson is Array type (until 2023)

Reference

URL Encode and Decode - Online