Entities.prototype.update = function(entity, payload, callback) {
    var path = 'entities/' + entity;

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