Hi,
I need to redirect a user to an external site and the url must contain some parameters to show the content. It's possible to achieve that with web links or some other feature?
Regards !
Hi @ricardodesouza ,
Did you think about security? If you are happy that anyone can see your data then all you need to do is create a table permissions and "Anonymous user" web role.
Once you have done that. Below is an example for your use case.
Viewing Entity list record using the id parameter
https://yourportal.powerappsportals.com/CovidVaccineTracker/viewCovidVaccineTracker/?id=cb443c9c-652d-ec11-b76a-2818686fc39b
Here the Guid is passed in a URL query string parameter called id.
Now you can use "&" and build multiple query string parameters. Ex:
https://yourportal.powerappsportals.com/CovidVaccineTracker/viewCovidVaccineTracker/?id=cb443c9c-652d-ec11-b76a-2818686fc39b&FirtstName=Ragavan
Using these multiple query parameters you can redirect and build whatever you like.
Because you have added an "Anonymous user" web role. Data is now readable. Probably you need javascript to read the fields.
Hope it helps.
------------
If you like this post, give it a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.