Deep linking in Mendix allows users to navigate directly to specific pages or trigger microflows with predefined parameters via URLs. This is particularly useful for:
Sharing direct links to records
Triggering workflows from external systems
Deeplink module has been deprecated for Mendix 10.6. It is replaced by page URLs and microflow URLs.
Steps to implement deep links in Mendix 10 using Microflow URL Parameters and Page URL Parameters.
Microflow URL parameters allow you to execute a microflow directly from a URL, passing input parameters.
Configure the Microflow to Accept Parameters
Open your microflow,
Add an input parameter,
define the URL pattern as shown below.
You can add multiple parameters also if required.
Final url will be like below.http://abc.mendixcloud.com/p/AccessRequest/258
Using this we can directly land on to the target page used in workflow approval/request approval on specific request.
2. Page URL Parameters
Using page url we can land on any specific page as given below.
Steps to Implement:Open your target page in the Page Editor,Pass the page name in URL
final link will be become as below.
http://localhost:8080/p/User_Access_RequestsPG1
also, Page URL parameters allow you to pass data directly into a page, which can then be used to fetch or display relevant content.
Perfect explanation. You can enrich this with how to apply authentication in deeplink
informative!!!!
Helpful!!!