Deep links are URLs that the mobile app is configured to recognize and "catch" when tapped from another app.
When a user taps a link that matches a deep link, the mobile app opens and navigates to a specific screen based on the link.
This article lists the values you can use to create your own links so that they redirect to specific destinations in the mobile app.
General format
All supported deep links follow this general format:
https://{domain}/{destination}?param1=value1¶m2=value2…
Where:
- domain is the domain of your platform (typically myplatform.360learning.com if you've customized the subdomain, or myplatform.mydomain.com if you've customized the full domain). Read more about customizing the domain of your platform →
- destination indicates the destination in the app.
- query parameters provide context to the app for routing or tracking purposes.
Supported destinations
| Value | Destination |
/home, /home/content/all, /
|
Home screen |
/group/<groupId> |
Home page of a group |
/profile/activity |
Profile page of the connected user |
/magicLinkLogin/<token> |
Home screen of the user related to the authentication token |
/profile/workspace |
Workspace of the connected user |
/catalog |
Catalog of the connected user |
The values of <groupId> and <token> are extracted from the query parameters.
Supported parameters
| Parameter | Usage |
token |
Authentication/session |
companyId |
Company context |
origin |
Referrer/source tracking |
groupId |
ID of the group |