Notif Class Reference

Notif.sendNow(message, emails) Notif.sendAtDate(message, emails, date) Notif.updateId(id, field, value) Notif.deleteId(id)

Notif.sendNow(message, emails)

Sends a push notification to users in the same Upvise account database.

var message = {id: "23455", title: "Invoice Paid", body: "#Number:2014-5443", 
               onclick: "Sales.viewInvoice({id})", type:"invoice" };
var emails = ""; // send to all managers
Notif.sendNow(message, emails)

Notif.sendAtDate(message, emails, date)

Sends a push notification to users at a specified date

var message = {id: "23455", title: "Invoice Paid", body: "#Number:2014-5443", 
               onclick: "Sales.viewInvoice({id})", type:"invoice" };
var emails = ""; // send to all managers
var date = Date.now() + 2*Date.HOUR;
Notif.sendAtDate(message, emails, date)