Scheduling Future Push Notifications with NodeChef Hosted Parse Server

We’re are happy to announce that NodeChef Parse Server offering now supports scheduled push notifications. Parse Server, the open source Parse backend supports sending iOS and Android push notifications which allows you to target your audience instantly. Sometimes, developers and administrators want to send a notification at a certain point in the future, but don’t want to write a cron job or stay by the computer waiting to hit send. To automate this situation for developers and administrators, NodeChef now supports scheduled notifications up to two weeks in the future.

Scheduling Push Notification

curl -X POST \ -H "X-Parse-Application-Id: ${APPLICATION_ID}" \ -H "Content-Type: application/json" \ -d '{ "where": { "user_id": "user_123" }, "push_time": "2015-03-19T12:00:00Z", "data": { "alert": "You previously created a reminder for the game today" } }' \ https://app-3.nodechef.com/parse/push

Deleting a Scheduled Push Notification

curl -X DELETE \ -H "X-Parse-Application-Id: ${APPLICATION_ID}" \ -H "X-Parse-Master-Key: " ${MASTER_KEY}\ https://app-3.nodechef.com/parse/pendingpush/57f279bfe5616d2a5e9f60aa

Scheduled push notification is available now. Log in or sign up to check it out.

SIGN UP NOW