documentation for the cart object by Jared Evans
Where is the documentation for the cart object? I found the documentation for the checkout object: http://docs.shopify.com/api/checkout but none for the Cart
View ArticleRobert commented on Create Webhook Bad Request
Hey Chris, thanks for the response. I actually resolved it a little earlier. The problem was a trailing / at the end of my address property of the Web hook. Everything seems to be fine now. On a side...
View ArticleChris Saunders commented on Create Webhook Bad Request
Webhooks created via API are not displayed. This is to prevent merchants from possibly sabotaging your app by mistake.Getting the list of webhooks only shows you your webhooks. Again to prevent...
View ArticleYaakov commented on Customizing Order Printer templates
Hi Marek,Did you figure this out? Im dealing with the same issue..
View ArticleCustom Events in Shopify by Josh Principe
Hi Everyone,I'm trying to send an email to a user if a specific tag is added to their customer record. I looked at the Shopify events documentation and I do not see any events for customers or tags....
View ArticleMaarten van Grootel commented on Custom Events in Shopify
You're right there are no events for customers or tags, but there is a webhook that fires when a customer is updated. If I'm not mistaken, this should satisfy your needs. See...
View ArticleNeil Costford commented on Unable to create order via API
Hi Aleksandar,Thanks for posting a clear explanation of your problem, and especially for posting the solution once you found it. Those HTTP headers should indeed be set when making all JSON requests to...
View ArticleAleksandar Jakovljevic commented on Unable to create order via API
No problem, I'm glad that it worked out in the end.It was rather confusing (at least for me) that I was able to send GET requests without those headers and receive proper responses, yet for POST...
View ArticleChris Saunders commented on Create Webhook Bad Request
So you'd pull in events - 1 requestYou'd pull in each item relevant to your events - n requestsYou hit your API limit and spend eternity catching upWebhooks are asynchronous and allow shopify to send...
View ArticleShawn commented on Required parameter missing - Fulfillment Creation
This is quite frustrating as the API doesn't return which parameter is missing.Since I am using a Proxy page the URL contains the order ID. The API documentation leads me to believe that I can just...
View ArticleWhy Shopify entity ids increase by 4 every time when I create new entity? by...
When I create pages with Shopify Api I noticed that id values increase by 4 every time I create new page.For Example:13911113, 13911117, 13911121...I can't understand why you increase id values by...
View ArticleNeil Costford commented on Why Shopify entity ids increase by 4 every time...
Hi Ferid,Good observation! Without getting into details about our backend infrastructure, the short answer is because of database sharding.
View ArticleProblem with creating Comment with "unapproved" status by Ferid Mövsümov
Hi I have problem with creating comment with unapproved status. Documentation says unapproved is default status but when I don't send this parameter it sets as published. Also when I send it as...
View ArticleKevin Hughes commented on Problem with PUT /admin/products/#{id}.json -...
Hi Steve,I just tried a PUT request to add a metafield to product on my test shop and it worked fine for me. Can you provide some more details on the exact request you are trying to make?Thanks!
View ArticleKevin Hughes commented on ShopifyAPI::Variant doesn't read in all the variants
Hi Terry,Can you try adding a limit parameter to your query like so?@variants = ShopifyAPI::Variant.find(:all, :params => {:limit => 100})This param is missing from the docs right now but I...
View ArticleWrong Error Message while creating Webhook via Api by Ferid Mövsümov
I noticed there is an error while parsing error message in webhook create api method"Invalid format %s. Formats allowed: json, xml" Url: /admin/webhooks.jsonPost Parameters:...
View ArticleChris Saunders commented on Wrong Error Message while creating Webhook via Api
I'll take note of the issue. Aside from the incorrect formatted printing though this isn't an issue.
View Article