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

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