Notification deep link not working while app is open

Hello,
I have a workflow where when the admin of the app adds a new row to a table, it sends a notification with a deeplink to show a view with that new row.

The deeplink works fine while the app is closed, but when while it is in view and the notification is clicked, nothing happens.

Here is the deeplink I am using: LINKTOROW([_THISROW], "My Row Detail")&"&at="&(NOW()+1)

The string at the end is used to force sync that I found about here: Sync Action?

0 7 654
7 REPLIES 7

Steve
Platinum 4
Platinum 4

The direct result of LINKTOROW() is intended for use within the app; it isnโ€™t a complete URL needed by a browser. To create a full URL, youโ€™ll need to prefix the LINKTOROW() result with the appโ€™s base URL, found here:

3X_1_d_1dd8f5170af2bf9b49bd12d977e10cb85e0aa760.png

Alternatively (and preferably), you can use the template variables to construct the URL instead:

Could I please get an example? Iโ€™ve tried many variations with my link but it is not working. I now get an โ€œErrorโ€ page page when I click on the app notification.

Try something like this:

CONCATENATE("https://ww.appsheet.com/start/...", "?", LINKTOROW(...))

Still not workingโ€ฆ

This is the code I used:
CONCATENATE("https://www.appsheet.com/start/...", "?", LINKTOROW([_THISROW], "My Detail Page"))

I get the โ€œerrorโ€ page in app. I am using a whitelisted app. Could that be an issue?

Thanks.

Please post a screenshot of the error.

Please also post a screenshot of your notification configuration.

I doubt it.

Screenshots are below.

Ah, okay. I misinterpreted your need. Your original expression was correct:

LINKTOROW([_THISROW], "My Row Detail") & "&at=" & (NOW()+1)

But, as for this:

I have no explanation. Please contact support@appsheet.com for help with this.

Top Labels in this Space