Properties.prototype.query = function (payload, callback) {
    var path = propertiesPath + '/query';

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