Hi @ScarletBtch ,
Firstly, the URL to send the Deep link is
https://apps.powerapps.com/play/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx?tenantId=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx&IDRef=xxx
You can of course create the IDRef dynamically (and use whatever variable name you want)
Then at App OnStart, something like this
If(
!IsBlank(
Param("IDRef")
),
Set(
vID,
Value(
Param("IDRef")
)
)
)
You then have the ID number of what you need so if you are navigating to a form, its Item property would be
Lookup(
YourListName,
ID=vID
)
To display the number, put a Label with the Text vID
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.