Alerts.prototype.delete = function(payload, callback) {
    var path = alertsPath + '/delete';
    this.postRequest(path, {}, payload, function(error, response, body) {
        callback(error, response, body);
    });