Question about Shopify APIs by joep
Hi, I have read thru the API documentation and browsed the API forums extensively, but could not find an answer to my inquiry.I am trying to determine if there are API call that can be initiated from...
View ArticleMike Convey commented on Updating images through API
Hi Rich,Thanks for the suggestion. As it happens, it has started working again the way it used to, so we didn't need to change anything...RegardsMike
View ArticleHey Jones! commented on How to change the image in by banner daily wise?
You could probably do something along these lines, provided that you've uploaded the appropriately named files to your /assets folder:{% capture w %}{{ 'now' | date: '%w' }}{% endcapture %}<img...
View ArticleHey Jones! commented on How to change the image in by banner daily wise?
If you meant a different image every day of the month, year, etc. and not just ever day of the week, just modify the {{ 'now' | date: '%w' }} accordingly:{{ 'now' | date: '%d' }} = Day of the month...
View ArticleHey Jones! commented on Question about Shopify APIs
It sounds like you're looking for Webhooks. You can associate an action with an XML / JSON call to an external application.http://docs.shopify.com/manual/settings/notifications/webhooksNot sure about...
View Articlemalaiyappan s commented on How to change the image in by banner daily wise?
the image name has no integer value means what we can do? is there any othe possibilities? because images are upload by the user so we cannot control the name and all.
View ArticleURGENT: Application Proxies down! by Andrew
Hello,We run 2 applications and this morning at approximately 8:37 PST all request to our application proxies started loading "we will be back soon" 503 pages in the customers shops. We did not deploy...
View ArticleHey Jones! commented on How to change the image in by banner daily wise?
You could just rename the image, right?
View ArticleAndrew commented on URGENT: Application Proxies down!
Application Proxies are now back up. Please disregard
View ArticleHey Jones! commented on How do I search for a product based on the SKU?
It doesn't look like that's possible through the API. The only way you could do it would be to loop through the Products and Variants until you found a match, or store a local database with the Variant...
View ArticleHey Jones! commented on Any way to export discount codes from Shopify?
There is a free app called Bulk Discounts that has an Export feature, not sure if it would accomplish what you need to do but could be worth a shot:https://apps.shopify.com/bulk-discounts
View ArticleShayne commented on How do I search for a product based on the SKU?
HeyJones is right on this one, my apologies for the initial response. Adding the ability to search by SKU is something that we'll take a look at.
View ArticleShayne commented on Variant's options title
Hi! You may want to take a look at the options property on the products resource : http://docs.shopify.com/api/product
View ArticleHey Jones! commented on How do I search for a product based on the SKU?
This would be cool:ShopifyAPI::Variant.find(:all, params: { :sku => 'SKU123' } )
View ArticleShayne commented on Creating variants with option2
Once you specify a second option on the product resource, you'll then be able to set the option on the variant level. Here's a link to the document that has some info on product options :...
View ArticleHey Jones! commented on Creating variants with option2
You need to add an array of Options to the Product first:{ "product": { "body_html": "uyt", "title": "gdf", "vendor": "my vendor", "product_type": "Stam4", "id": "407311507", "published": "false",...
View ArticleHey Jones! commented on How to add custom description and price product into...
I had to do something similar recently. What I did was create a Variant on the fly via the AJAX api with the total price of the options that the user selected and stored those option values in the Line...
View ArticleHunkyBill commented on How to add custom description and price product into...
And you'll learn that over time, when you create variants on the fly and then delete them to satisfy primal urges like this, down the road, your chances of doing some meaningful analytics become...
View Articleget inserted Product Id in Webhook by Rahul Sharma
I am doing integration between shopify and salesforce and for that I have create a webhook event on "Product/Insert", But iI don't know how to get inserted Product Id in Webhook. Is there any way to...
View Articlewthomasoh commented on Any way to export discount codes from Shopify?
Thanks Jones - that is a cool app, we used it to create a ton of discount codes and it was great. But once they are in the store if you need to manage them at all you are in bad shape.As a word of...
View Article