Question:
Can we open the link to the survey on our website as soon as the user taps on the push? Open some page in our app or some image with the promo offer?
Answer:
Pushwoosh allows to tie various actions to the push tap - you can find them under the "Action" tab:
Simple app open is a default action, which will be performed for every push unless you specify any other action.
You can tie any URL to the notification - it works great in case you want to invite your app users to your website, for example! (Parameter "link"
for the /createMessage request)
Rich Media is another action that could be performed. It's an amazing tool for the promo offers, coupons, codes, etc. (Parameter "rich_media"
for the /createMessage request)
Deep Links are the way to go if you want to guide your users to some specific page of your app - like an in-game shop! (Parameter "link"
for the /createMessage request + do not forget to add "minimize_link": 0
in order for the deep linking to work)
You can also pass some Custom Data along with the push regardless of the chosen action. (Parameter "data"
for the /createMessage request)
Comments
0 comments
Please sign in to leave a comment.