The Harvest Table was causing some customers frustration because they would have to spend time/clicks configuring the default sort to use Harvested Date [DESC].
We listened, and now the all three Harvest Table views (Active, Inactive, Unsubmitted) sort the harvests data using
Harvested Date
[DESC] by default.
Screenshot 2025-10-17 at 4
We believe this will improve customer's experience with your Harvests in Canix.
Screenshot 2025-10-17 at 4
Using the Canix REST API: GET Harvests
The Canix REST API supports sorting the result set, but it doesn't default to sorting by the harvest object's
date
property descending, here is an example API Request showing you how to set the GET Harvests (list of Harvest objects) to sort the API Response's ResultSet descending and limiting the number of results to twenty (20):
curl -X 'GET' \
'https://api.canix.com/api/v1/harvests?limit=20&order_by=date%20desc' \
-H 'accept: application/json' \
-H 'X-API-KEY: {REPLACE_WITH_YOUR_CANIX_API_KEY}'
NOTE:
you'll need to set the
X-API-Key
header value to be one of your company's API Keys for this API Request to execute successfully.