Client.prototype.openOrder = function(id, callback, access_token) {
    var url = this.buildPushUrl(access_token).replace(this.endpointToken,
        this.endpoints.order.replace(this.idToken, id) + '/open');
    this.put(url, callback);
};