Hi everyone,
I have a media app and would like to notify all my app users (on IOS and Android) when I add a new record (in my case, a new article) in one of my database.
Someone can help me ?
Thanks a lot,
Romain
Hi everyone,
I have a media app and would like to notify all my app users (on IOS and Android) when I add a new record (in my case, a new article) in one of my database.
Someone can help me ?
Thanks a lot,
Romain
You can set this Trigger Notification action on your form.
You mean not send the notification instanly when the new record is created! Then I belive you need Push Notifications.
Your Welcome!
This is not a form, it’s a list
I have a list of articles (connected to article’s database) and I would like to notify users when a new article is added in my article’s database and therefore available in the list.
Hi @romain,
What Dilon is referring to is if the data in the List is submitted via a form, then form is the way to go, if not, how are is the new data being submitted to the Database/lists? If not by a form (i.e. API) then you need to trigger it outside ADALO, you could use Integromat/Zapier for that.
Hi !
I succeed to send a notification but only to one user thanks to this :
{
“appId”: “2bc38ea8-2eb1-4db0-974c-e9e031f2c0e0”,
“audience”: { “email”: “user@example.com” },
“notification”: {
“titleText”: “Hello There”,
“bodyText”: “This is just a test…”
}
}
do you know what i can put in audience to send a notification to all my users ?
Thanks,
Romain