Static URL of page

1
Hi Reader,   I want to provide static URL of the page and send it to email.   But in URL property of page automatically includes {id} which changes on every hit. I don’t want this {ID} How can I provide a static URL to the page?  
asked
2 answers
2

Hey harshraj,

 

You can implement this by using deeplink.

 

You can refer to this doc for the same.

https://docs.mendix.com/refguide/mobile/using-mobile-capabilities/deep-links/

 

Hope it helps!

 

 

answered
0

The page you trying to link to has a DataView that requires a page parameter, that is why you have the {Id} part in your URL.

To remove this, you would need to create a page that doesn’t have a page parameter. If you need dynamic content on that page you would have to use a datasource microflow on the top DataView on the page instead.

Hope this helps

answered