Client.prototype.getStoreTemplates = function(callback, access_token) {
    var url = this.getRootUrl(access_token).replace(this.endpointToken, 
        this.endpoints.store_templates);
    this.get(url, callback);
};