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

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