I am having an issue where I'm attaching a link to an email. The link is taking the recipient to the appropriate screen but not to the correct record (#158 as shown below).
Any suggestions on how to resolve?

I am having an issue where I'm attaching a link to an email. The link is taking the recipient to the appropriate screen but not to the correct record (#158 as shown below).
Any suggestions on how to resolve?
well, you need to set a variable in the OnStart property of your app.
And you need to specify if the user is navigating from the deep link or just open the app.
If the user is navigation from the deeplink = navigate this Record.
If the user just open the app navigate to i.e Main Screen
OnStart=
Set(
var_DeepLinkID,
Param("RequestID")
);
If(
var_DeepLinkID <> "0",
Set(
varRecord,
LookUp(
YourDatabase,
Title = var_DeepLinkID
)
)
);