Hi,
I am using an integration tool to return all of the Users for my organisation and put them into a db table. There are more than 100,000 users so when I call the API it returns a 429 error (Too many requests) which is the limit for the API.
I then need to return the next batch of users, using the incremental export “GET /api/v2/incremental/users?start_time={start_time}”, but I don’t know what value I need to provide in the {start_time} parameter.
The User API returns created_at and updated_at in the entity users response. Which one do I need to use.
Any help would be much appreciated.