Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

120
Views
Shopify node API get the latest products updated

I'm currently looping my whole list of products I get from shopify and get the updated date of the object, is there a more optimized way to use it? does shopify have a resource to get the latest updated products so I can optimize my work

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

According to the documentation, you should be able to get a list of products filtering on three specific date fields ... published_at_min, created_at_min and the one you likely want, updated_at_min.

https://shopify.dev/api/admin-rest/2022-01/resources/product#[get]/admin/api/2022-01/products.json

import Shopify from '@shopify/shopify-api';
const client = new Shopify.Clients.Rest('your-development-store.myshopify.com', accessToken);
const data = await client.get({
  path: 'products',
  query: {"updated_at_min":"2021-01-15T16:15:00-04:00"},
});

Add it to your query and go from there.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!