Somehow, I cannot sort Organizations by updated_at desc or created_at desc
https://MyDomain.zendesk.com/api/v2/organizations?sort_by=updated_at&sort_order=desc
Also, how can we do the same for the ticket form api below?
Since api gives 100 records in a page, I wanted to pull data updated in the last say 12 hours... Any suggestions? So if we can do this we can pull only the last updated Organizations and the form data every time our ETL pipeline runs...Thanks a lot for your assistance.
If you don't see "sort" listed in the documentation it means that endpoint doesn't have a sort operator. This is best accomplished with the search api.
/api/v2/search?query=type:organization&sort_by=updated_at&sort_order=descAs for your second query, are you looking to pull tickets that have had that particular field updated?