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

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