We have a local news website running als with an (android) app. Until now we have te login to appilix to send notifications to app users whenever a new article is published.
Appilix als has an API. I tried to get it running from a separate form after publishing an article. The form will send without any errors, but notifications do not arrive.
It should be like this (from appilix)
curl -X POST https://appilix.com/api/push-notification
-d 'app_key=the key'
-d 'api_key=the other key'
-d 'notification_title=titel'
-d 'notification_body=tekst'
This is how the api is setup
Can anyone point me in the right direction to get this working?

