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

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