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

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