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
Back To Top
Search