Which permissions required for creating webhook for fulfillments/create? by...
I use scope=write_orders in oauth/authorize, yet later on when I try to create a webhook for fulfillments/create I get this error: You do not have permission to create webhooks with fulfillments/create...
View ArticleChris Saunders commented on Which permissions required for creating webhook...
I believe you also need permission for fulfillments_read or fulfillments_write depending on your use case. I couldn't find backing documentation for this.
View ArticleChris Saunders commented on Which permissions required for creating webhook...
Are you looking to pick up on when an order is fulfilled? If that's the case you need to subscribe to the orders/fulfilled and orders/partially_fulfilled webhooks which don't require extra permissions...
View Articleshaharsol commented on Which permissions required for creating webhook for...
First of all, you were right the 1st answer. I added write_fulfillment and it worked...However, you are even more right on the 2nd answer. I *am* looking to be notified on orders fulfillments and I...
View ArticleMaarten van Grootel commented on Public vs. Password Protected Shops
Good news, I just added this! :)There is now a property on /admin/shop.json called password_enabled that will either be true or false depending on whether the password protection of the storefront has...
View ArticleSending XML Data To 3rd Party Fulfillment Question by Kenny Rosenberg
Hey guys,I'm having trouble understanding how to set up a webhook (or an app) to send data in XML format to a 3rd party server for fulfillment.I've been given the following API info from the...
View ArticleMrPunkin commented on Request orders containing specific product line items?
So further research led me to a Stack Overflow article where the accepted answer was indeed to use the orders/created webhook to populate your own DB with the relationship between order_id and...
View ArticleMrPunkin commented on Sending XML Data To 3rd Party Fulfillment Question
Unfortunately I believe you will indeed need to either build your own app or hire a developer to build one for you to bridge the Shopify data structure and the CFS API endpoint. Basically what your app...
View ArticleMrPunkin commented on Send fulfilment mail failed
Not related to fixing the issue, but may want to change that "tracking_number" to "tracking_numbers" and use an array soon to avoid the looming deprecation.
View ArticleKenny Rosenberg commented on Sending XML Data To 3rd Party Fulfillment Question
MrPunkin, Appreciate your response. Ok so to clarify 1) I'll have to create a URL (ordercapture.php) to capture order data via Shopify webhook. Does this have to be a heroku app or can I just host...
View ArticleMrPunkin commented on Sending XML Data To 3rd Party Fulfillment Question
Kenny,Actually you have no need to make this a full blown app, come to think of it. You could very simply create a PHP file that does the conversion, host it yourself, and just create the webhook in...
View ArticlePayment gateway integration by Roger Einstoss
Hi, i'am planning to integrate in one of my shops a new payment gateway, i would like to know if is there a way to update the order status from the outside, by making a new APP or whatever, is it...
View ArticleKevin Hughes commented on Sending XML Data To 3rd Party Fulfillment Question
You might also be interested in checking out the Fulfillment Service API if you go the route of writing an app http://docs.shopify.com/api/fulfillmentservice
View Articlesreena commented on Traffice source/medium through API
Is there any solutions for getting the conversion details such as Direct/Paid/Organic etc. through API?
View Article7Spikes commented on Proxy to change just a portion of a public page.
Hi Chris,Thank you for your reply!I thought more of something like an action filter that would allow me to change the page model/data.I would like to change the meta data for the page. I would like to...
View ArticleAlex Farquhar commented on Invalid content type encoding
Hi I just had the exact same problem - if your proxy returns gzipped content it won't work, I had to remove the gzipping from my rack middleware (I'm using rails) for my proxy url, then it works fine...
View ArticleCreate Product succeeds with 201, but has null product id by Adam
sending this JSON:{"product":{"metafields":[ {"key":"id","value":100001,"value_type":"integer","namespace":"springboard" } ],"body_html":"test\ntest\ntest","handle":"100001","title":"Super...
View ArticleAdam commented on Create Product succeeds with 201, but has null product id
Solved. It has something to do with using the key "id" in the metafields. changing that fixed it... weird.
View ArticleHunkyBill commented on Create Product succeeds with 201, but has null product id
Your metafield entry makes no sense as you pointed it out... an integer with the value "id" which is a string is nonsense and should have killed the create, which it did... your null as a return ID is...
View ArticleAdam commented on Create Product succeeds with 201, but has null product id
Thanks Bill! my code wasn't casting that to a string. it can't be right that the API returned a 201 Created, though as opposed to giving me a reasonable error. not to mention the variant for the...
View Article