Dan Mort commented on Editing Custom Collections through the API
Brilliant! Thanks Bill!
View Articleupdating a product's price with one API call by Philip Butler
We're using the shopify Python API's to update our the prices of our Products. I see that I can get a product with the API's, then make changes and use Product.save() to save them.To save API traffic,...
View ArticleHunkyBill commented on updating a product's price with one API call
It takes two API calls to change prices. One to Read the Product in question. One to save the price changes. 2 calls. You cannot reduce that to one call. The harsh reality of computing.
View ArticleHunkyBill commented on "Search Engine" Products fields accessible through...
Title and Description are metafields, available via the API, for any resource, and they are in the "global" namespace.Look for title_tag and description_tag or something like that.. They are listed in...
View ArticleMark Stewart commented on "Search Engine" Products fields accessible through...
I've read that before, however this does not seem to be the case in my store.Every product in my store has meta title and descriptions in the Product admin pages, however:GET...
View ArticleHunkyBill commented on "Search Engine" Products fields accessible through...
That is not a good API call for what you want. Instead, direct your energies at a specific resource, like a product. Get the metafields, and inspect.. you'll find what you are looking for there.
View ArticlePaleo To Me commented on AJAX POST /cart/add.js Functions but returns Syntax...
Hi:Has anyone else ever seen this error?I'd really like to get this figured out over the weekend.Thanks!
View ArticleApp Proxy Latency on HTTP request by Jesse Michel
Hello all!We are building a proxied app for a client that has a custom shopping guide component (http://pocparties.com/apps/drupal-product-builder/baby-shower for example).As you can see, the...
View ArticleHunkyBill commented on App Proxy Latency on HTTP request
Proxy results you provide are a string. So when a request hits your server from the proxy, that takes time. Some servers are idle and only spin up to process a request when hit with one. That can be 6...
View ArticleJoshHighland commented on updating a product's price with one API call
If you have multiple variants, you need to make a call for each variant
View ArticleHunkyBill commented on updating a product's price with one API call
You can update all the variants of a product with one API call. Just update the product resource. The documentation shows an example of this.
View ArticleHammad Khalid commented on Modifying weight_based_shipping_price via API call
Hi Jason, At this point you can access the weight_based_shipping_price via the API, but you cannot update them. Have a look at http://docs.shopify.com/api/country, and the /admin/country.json page of...
View ArticleNate commented on OAUTH error when logging in with staff account.
Hey Jeremy,The problem you're seeing is a result of a security fix we launched a couple of days ago. An app's OAuth scopes now have to line up with the Staff permissions of anyone trying to install or...
View ArticleNate commented on How do I retrieve the metafields for an Article via the API?
Hi Barranger,The metafields for an article can be found at the URL:/admin/articles/:id/metafields.json
View ArticleNate commented on Question about the sort order when GET endpoints with...
Hi John, good question. That is the case (they are sorted by id ascending), but as it is not a documented behaviour of the API, we reserve the right to change it. Probably not good to rely on it for...
View ArticleJeremy commented on OAUTH error when logging in with staff account.
No this seems to be happening with existing users on apps that have already been accessed. One user noted that this started around Monday.
View ArticleHammad Khalid commented on How to apply mutliple filter condition for order...
Hi Utpal, In this case, you have to make two different calls, and combine the results:...
View ArticleNate commented on Product Update Webhook repeat excessively till getting...
Hi Jason,Each Webhook is sent with an 'X-Request-Id' header value. Could you give me at least two from the duplicate web hooks you're receiving? That will help in figuring out the problem you're...
View ArticleHammad Khalid commented on [SDK] bug report: app name with "&" becomes "&"
Hi Marius, Thanks for reporting this issue. Cheers,Hammad,
View ArticleNate commented on AJAX POST /cart/add.js Functions but returns Syntax Error
Hi there,Did you take a look at the response to the POST request? The 'parser error' being thrown by the browser probably has something to do with the form of the response. Could you post the response...
View Article