Reputation: 31
I am building an application where I need to fetch data from my Shopify account using Jquery Ajax. I have gone through documents provided by Shopify, but I have not landed to any solution yet because the documentation provided by Shopify does not make any sense. Please provide solution if you guys have any.
Upvotes: 1
Views: 2519
Reputation: 194
You have this help page : https://help.shopify.com/en/api/reference/customers/customer#
this url is available :
GET /admin/api/2019-04/customers.json
this retrieves a list of customers. The documentation show you how to :
You just have to do a GET call.
This link show you how do you have to do : https://guide.freecodecamp.org/jquery/jquery-ajax-get-method/
Upvotes: 1