Hi, I'm new to Dynamics 365 t but kindly advise and I'll try to understand it.
So I've made a custom entity and custom templates using liquid.
I was able to retrieve the data using the id parameter "request.params.id" and access the right entity in a similar format below:
/test-page/?id=XXXXX-XXXXX-XXXXX-XXXX
The page with the custom template has successfully read and display the data correctly based on the requested id.
But I'd like to know how I can be able to make the URL in a format like this:
/test-page/name instead of /test-page/?id=xxxxx....
I'm planning to add a new unique field on that entity like a "partial url" and use that as the key identifier to retrieve the data from entity (where I can add this "name" value: /test-page/name ).
But I'm not sure how to implement this approach on the web template? Can you please advise? Thank you!