Neil Costford commented on Update tracking number for a fulfillment
Hmm, the endpoint you pasted still doesn't look right to me... you have to specify both the ID of the order and the ID of the fulfillment. It should look something like...
View ArticleJana commented on Update tracking number for a fulfillment
Tried that with$data = array("order" => array("fulfillment" => array("tracking_number" => "11111", "id" => 207884801))); Below is the whole code (The PUT method is currently commented out...
View ArticleChris Saunders commented on Form Submit Won't Work for Rails via App Proxy
Are you sure you're linking to your form correctly? If it's a relative URL and getting rendered on Shopify it might be linking to somewhere on the shop instead of back to your application.
View ArticleBarnett Klane commented on Form Submit Won't Work for Rails via App Proxy
Chris, I use url_helpers which are the absolute path within the application. Yet when submitted it is hitting /products within the store. Would Ajax submission fix this? or do you have a gist of the...
View ArticleNeil Costford commented on Update tracking number for a fulfillment
"I am trying to use the fulfillment API in order to update the status with a tracking number. I am using "PUT /admin/orders/#{id}/fulfillments/#{id}.json" as mentioned in the API documentation."Sorry...
View ArticleShopify Craig commented on Create Order with the API
You can now create orders via the API: http://docs.shopify.com/api/order#createCraig
View Articleradkiddo commented on Carrier Service API issue?
Hi Chris, Need to bug you again... sorry.I have the app on a public URL and this is my callback URL (it is a POST endpoint):http://shopifycarrier.hp.af.cm/shopify/carrier/rates If you test it...
View ArticleHunkyBill commented on Create Order with the API
This could be useful. Not sure how since no money transacts, but for home-rolled POS opportunities this could be gold.
View ArticleProblem with PUT /admin/products/#{id}.json - metafields by Steve Barnes
Is anyone having an issue with adding metafields to existing products using the following:-Add a metafield to an existing productPUT /admin/products/#{id}.json{ "product": { "id": 632910392,...
View ArticleJason commented on Problem with PUT /admin/products/#{id}.json - metafields
Are you sure your url and action is right? Try: /admin/products/#[id]/metafields.jsonBe sure to reference the docs:Create a new metafield for a product.POST /admin/products/#{id}/metafields.json{...
View ArticleSteve Barnes commented on Problem with PUT /admin/products/#{id}.json -...
Yes, i'm using the API correctly, if you go here you'll see: http://docs.shopify.com/api/product#updateWhich is exactly the same for a page: http://docs.shopify.com/api/page#updateThe only difference...
View ArticleN Karapota commented on How to insert button (some HTML and JS code) on page?
I used this project https://github.com/robconery/ShopifyApi/Changed next items: - API,secret,scopes in web.configAt first i got 403error. Then in file...
View ArticleSearch Shopify products by keyword with JSON response by Abhishek
I have a requirement of displaying products using a keyword that the user enters.I searched over and found this url working:store.myshopify.com/search?q=short&type=product&view=jsonwhere I...
View Articlehj commented on How to register app in bulk actions?
Hello Forsberg+two,Thanks for the tip. I didn't know Apps can also add links to the "Bulk actions" menu. Probably this only works for the "Details" links.HJ
View ArticleHunkyBill commented on How to register app in bulk actions?
I think you mean this works only for the Overview. Like Products Overview or Orders Overview. If you add a link to those options, you'll see that any ticked off visible resources have their ID's...
View ArticleShopifyAPI::Variant doesn't read in all the variants by Terry Middleton
Strange...I'm simply trying to read in all the variants of a store. I'm using RonR. @variants = ShopifyAPI::Variant.find(:all)There are 89 Variants in my store, however it stops at 46th Variant. I'm...
View ArticleNeil Costford commented on FulfillmentService: requires_shipping_method...
Thanks for this post. It is, in fact, a bug in the API which stems from the way Rails handles strong parameters (incorrectly in our opinion). The `requires_shipping_method` parameter should in fact be...
View ArticleFulfillments not attached to a line-item by Omar
I am currently doing development with the Shopify API.Before, I used to create a fulfillment by using "Tracking_Number" and "Tracking_URL" and if a fulfillment already existed for an item, i would get...
View Article