[SOLVED] How to supply a url parameter to the app in an email and then do something with it?

I have an app, lets say a note taking app.
In appgyver, I have the response in a repeating list component.
And in my backend email system it basically sends the same list from the user’s database (firebase) through to their email.

Now I am trying to connect the two.
I want to be able to create a link/url in the emails that links and opens up my application to that specific repeating list item.

How do I do this?

Whenever I try to pass a page parameter to the app - it just gets truncated, and I can’t seem to access the url parameters from any page.

This is how I would like it to function:

Eg www.myappgyverapp.com?myNoteId=1234

Then on App loading - if myNoteId, save 1234 to ‘currentViewItemReference’
and
‘navigateTo View Page’ where it would look at the currentViewItemReference and retrieve the appropriate object.

Any ideas?

I’d try with
QUERY_PARAMETERS_OBJECT

It enables deep linking so you can access any page in the app with the URL params you want.
Use it in the global canvas. The app will load it at launch (add condition if not empty) and direct user to that page with the param. Then use param to load list of to do’s.

Hi,

You may find this article helpful:
https://help.sap.com/docs/BUILD_APPS/431746e4c663458aa68d9754b237bfc6/740cef267fec4add9d47227718dc30f7.html

2 Likes

That worked - thanks all - had no idea this existed

1 Like