Deep Linking

⛓️‍💥 Deep Linking

The to parameter allows you to route users directly to a specific screen, feature, or campaign within your app.

Route
Description

/offers (default)

Opens the Offerwall - the default page displaying all available campaigns.

/offers/[campaignId]

Opens the Offer Details page for a specific campaign. Replace [campaignId] with the campaign's unique ID.

/active-offers

Opens the Active Offers page, showing current ongoing campaigns.

/active-offers?groupName=[groupId]&campaignId=[campaignId]

Opens the Active Offers page and sets the default selected tab and campaign. Replace [groupId] with relevant ID (HotDeals, UrgentTask, All). The [campaignId] is optional—if omitted, the first campaign in the group will be selected by default.

/support/[campaignId]

Opens the Support page for a specific campaign, where users can find help and FAQs. Replace [campaignId] accordingly.

/support/[campaignId]/not-receive-points

Opens the Support Ticket page for reporting missing points or other issues related to the campaign. Replace [campaignId] with the appropriate ID.

/settings

Opens the Settings page where users can customize their preferences.

/settings/language

Opens the Language Settings page to allow users to select or change their preferred language.

💡 Pro Tip: Replace placeholders like [campaignId] and [groupId] with actual IDs relevant to your campaigns to provide precise navigation.

Example Usage

You can use the following deep links by appending them to the to parameter:

<!-- This URL will redirect the user 
to the specific offer details page for campaign ID 1234 -->

https://sdk.tyrads.com?token=<TOKEN>&to=/offers/1234

Last updated