Skip to main content

Triggers

Add triggers to specify the conditions under which your in-app survey will appear.

Consider when it should be launched, where, and to whom.

Screen visit

Initiate your survey when the user navigates to a specific screen within your app.

You can specify the Activity or Navigation Controller destination name and set a delay if desired.

img alt

Custom event

Activate your survey when a user performs a predefined action tracked within your application.

1: Configure your custom events

To trigger an in-app survey based on a custom event, begin by transmitting the event to our SDK.

val properties : List<Map<String, Any>> = listOf(mapOf("key" to "value"),)
Told.trackEvent(eventName = "eventName", properties = properties)

2: Trigger surveys with custom events

Once you've invoked the trackEvent method, set up your trigger using our no-code platform.

Changes are automatically saved, so simply relaunch your application to immediately test the survey's display behavior.

img alt