skip to Main Content

Shopify API Configuration

When we created a API, I figured that I need to configure a new Shopify like this const Shopify = require('shopify-api-node'); const shopify = new Shopify({ shopName: 'your-shop-name', apiKey: 'your-api-key', }); Is there any way to get the Shopify "your-shop-name"…

VIEW QUESTION

Get Refunds List in Shopify with Date Filter (Not Orders)

`GET /admin/api/2022-10/orders.json?financial_status=refunded,partially_refunded&fields=refunds&created_at_min=2022-10-05T00:00:00-05:00&created_at_max=2022-11-17T24:00:00-05:00&limit=250&since_id=0&status=any` We are using this API to fetch the refunds list. Actually we want to fetch refunds on Date base like refunds with in specific date but Shopify does not provide any refund Listing API to get the refunds…

VIEW QUESTION

How to setup a free trial in Shopify Rails app

I will like to setup a free trial in my shopify rails app. I am using the official Shopify Rails app gem https://github.com/Shopify/shopify_app. The config for billing looks like this config.billing = ShopifyApp::BillingConfiguration.new( charge_name: "Apps", amount: 6.99, interval: ShopifyApp::BillingConfiguration::INTERVAL_EVERY_30_DAYS, currency_code:…

VIEW QUESTION
Back To Top
Search