Free Trial start/stop/start by 36labs
I have an app with a 14 day free trial (https://apps.shopify.com/live-cart). If a merchant installs the app (app install, recurring app charge activation), 3 days later uninstalls the app (recurring...
View ArticleRob Curry commented on Problem in developing embedded app for Shopify
Are you running your app from behind an SSL certificate? All embedded apps MUST use an SSL certificate otherwise you will get errors, and most browsers will block the app from loading.Localhost is...
View Articleanki commented on Problem in developing embedded app for Shopify
Thanks Rob for your quick revert , but please guide me what you want to say and how can I fix it as I am not getting what you want to say as I am new to shopify development.I although disable...
View ArticleHunkyBill commented on Pay per use billing in app.
Why can you not just use the one time billing charge? If you work on a video, and deliver to the client, make a one-time charge they have to pay before the video is released. If you do your own...
View ArticleMudit Tanwani commented on Pay per use billing in app.
In one time billing the store owner is charged at the time of app installation. And we have built an app that can be used to create videos for each product in the store. Charging one time will be...
View ArticleHunkyBill commented on Pay per use billing in app.
You can create a billing charge, one-time or recurring, any time you want, NOT just when an App is installed. Therefore you could jury rig a way to use this.
View ArticleClient side mobile app using Shopify for payment by UDRI-SSG
Hi,I am building a native mobile application for my Shopify store. I love the API but read that mobile payments cannot be processed through the API. This makes sense due to all of the PCI-DSS...
View ArticleZoe_R commented on Shopify theme repository using Git?
I think Beanstalk is great (and I'm really happy to see movement in this area) however I'd love to see other solutions as well as I don't especially want to pay for the hosting aspect at this point in...
View ArticleIs the "id" value returned from /admin/orders.json an ascending value? by JB Uy
Not sure if I missed this somewhere in the docs, but just need some clarification.Here's what it says in the docs for /admin/orders.json: { "id" : "450789469" }The unique numeric identifier for the...
View ArticleAPI Call to get Total Product Variants in Database by Lisa Snyder
When making the call to get all product variants, the maximum number of allowed records returned is 250. I would like to be able to get the total COUNT of product variants and divide by 250, so I know...
View ArticleMarcio Vieira commented on API Call to get Total Product Variants in Database
Hit /admin/products/count.json first and you'll get your count.
View ArticleActive Shipping Ruby Gem by Quy Phan
Have a question regarding the ActiveShipping Rubygem (https://github.com/Shopify/active_shipping).Right now the FedEx rates does not include declared value. So the actual FedEx rates is different from...
View ArticleJames MacAulay commented on Is the "id" value returned from...
For now you can make this assumption, yes. In the future we may have to start generating IDs in a different way, but we would give API developers a big warning for that kind of change.However, if you...
View ArticleRob Curry commented on API Call to get Total Product Variants in Database
Not sure what language you are using, but this is how i tend to do it in PHP:$count = $client->call("GET", "/admin/products/count.json"); if ($count > 0) { $pages = ceil($count / 250); for...
View ArticleJB Uy commented on Is the "id" value returned from /admin/orders.json an...
Thanks James.I think created_at_min would be much more "reliable" to use then, in the case that we won't have access to the program that uses the API in the future.
View ArticleLisa Snyder commented on API Call to get Total Product Variants in Database
Marcio/Rob - Thank you for responding to my post. Unfortunately, admin/products/count.json returns the total number of products. I am looking for the total number of product variants. Each product...
View ArticleMarcio Vieira commented on API Call to get Total Product Variants in Database
Lisa, since you mentioned updating inventory quantity of multiple SKUs, I'm assuming you're writing a private app to synchronize your product availability to some local database/inventory management...
View Article