Client.prototype.deleteProduct = function(id, callback, access_token) {
    var url = this.buildPushUrl(access_token).replace(this.endpointToken,
        this.endpoints.product.replace(this.idToken, id));
    this.delete(url, callback);
};