How to push notification with action-route to open screen this

When the notification comes from Expo I want to redirect to the notifications page when clicked. Is there a parameter for this?

For example;

https://exp.host/--/api/v2/push/send',
{
    **route: 'notification'**,
    to: notifyToken,
    sound: 'default',
    title: 'Yeni Bildirim',
    body: 'Seni bekleyen toplam ' + notifyCount + ' okunmamış bildirim var'
},
{ headers : { Accept: 'application/json', 'Content-Type': 'application/json' }})
.then((res) => {
    
})
.catch((err) => {
                    
});

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.