Skip to main content
To efficiently get updated orders from the Copper API, you can use updatedSince query parameter. This parameter allows you to filter orders by the time they were last updated.
1

Get the Last Update Time

To avoid downloading all orders every time, track the last time you checked for updates. Store this updated_at of the last fetched order in a safe place, like a database or a file. This tells your system when you last fetched updates
2

Request Updated Orders

Use the updated_at timestamp to ask the Copper API for any orders updated since that time by passing updatedSince query parameter. The API also lets you specify a limit on how many orders to fetch in one request, which helps manage data better.
3

Process the Orders

Go through each order you receive and do what’s needed — like logging details, updating your system, or triggering other processes. Ensure that your operations can handle repeats without causing issues, in case the same order is fetched again.
4

Update the Last Update Time

After dealing with a batch of orders, update your stored updated_at timestamp to the most recent order update time in that batch. This way, your next API request will only fetch newer updates.
5

Handle Pagination Efficiently

To efficiently handle pagination, request one more order than you actually need. For example, if you want to fetch 100 orders, request 101. Use only the first 100 orders for processing. If you receive the 101st order, it indicates there are more orders to fetch. Repeat the process until the number of orders received is less than or equal to the limit you set (100 in this case), which means there are no more updates.

Example

This is not production-ready code. It’s a simple example to help you understand the process.