Deep Link URL for Feedback from

0
Hi Mendix Experts,   I am new to Mendix I want to implement Deep Link URL in 9.24.4 Mendix version which will open my feedback page where user will fill the feedback and submit I have configured Deep link module and URL is sent by mail but thing When I am trying to access the URL it is showing me this    then I got to know I have to specify URL to page but in Documentation I didn't find it who to do it can any help me with this matter    Thanks in Advance.  EDIT: Created this Microflow for Deep Link URL
asked
1 answers
5

Hello Syed.

 

1.Frisrt define your deeplink in deeplink configuration page.

image.png

 

2.Add your logic in deeplink Microflow like which page you want to show to user.

 

image.png

 

3.Link which you will send in email will become like this.

http://localhost:8080/link/NewCustomerInvite?InviteCode=xyz

 

4.Call Showhome page MF in your navigation, if request came from deep link then it will go into page written in deeplink MF else it will go into system default home page.

image.png

image.png

5.in your startup MF start deep link also.

image.png

using this approach, you can achieve your desire page.

answered