My company would like me to call the shopify admin API to retrieve a list of our Products to add to our reporting database, daily.
I read the shopify documentation but it looks like the endpoints are only accessible within shopify Apps.
The endpoint would be
curl -X GET “https://your-development-store.myshopify.com/admin/api/2023-07/products.json”
-H “X-Shopify-Access-Token: {access_token}”
Is it possible to call above URL from outside the shopify app environment? If so, how could I generate an access_token to use, please?