Alerts.prototype.update = function(payload, callback) {
    var path = alertsPath + '/update';

    this.postRequest(path, {}, payload, function(error, response, body) {
        callback(error, response, body);