Skip to main content

Polling for Changes with Timestamp Filters

Use updatedAt[gte]=<lastSync> to retrieve records modified since your last sync.

Basic Pattern​

  1. On each polling cycle, request records with updatedAt[gte]=<lastSync>.
  2. Carry the same filter across every page so you don't miss records updated while you paginate.
  3. After consuming all pages, advance your next sync watermark to the maximum updatedAt value observed in the response.
  4. Deduplicate by id: a record returned in multiple windows should be processed only once.

Pagination​

Work orders use cursor pagination. Parts, assets, and purchase orders currently use offset pagination. With offset pagination, records updated while you page through a result set can move between pages, so clients should deduplicate by id and use a small overlap window.