Client.prototype.delete = function(endpoint, callback) {
    var options = this.makeHttpsOptions(endpoint, 'DELETE');
    https.request(options,
        function(res) {
            var returnData = '';