Hey dear,
I need latest product data from a Shopify store with the help of API
Example: I have a [ABC] product in the store, but when I add new product like { dummy } in store, then I need to get only { dummy } product data from the API without product id
I’m using PHP curl functions
<?php $new_product = shopify_call($token,$shop_url, "/admin/api/2021-10/products.json", array(), 'GET'); $new_product_str = json_decode($new_product['response'], JSON_PRETTY_PRINT); ?>Thanks and regard
Mohd. Shariq