Hi
I have a use case where I need to collect all the tickets in my zendesk instance.
I do this via the export api:
https://{_subdomain}.zendesk.com/api/v2/search/export.json/
So I do a call to this endpoint in my code (I get a 1000 tickets per page), and then I follow the pagination link to get the next page, by calling the url in the "links/next" field in the response json.
I have between 100.000-200.000 tickets in my database, so I should get quite a lot of pages also.
But, when my code goes through the pages, then i usually gets to around 6-7 pages, and then just stops responding. The endpoint seriously just does'nt send anything back
My Httpclient gives me the error message:
{"The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing."}
So yeah, the api just is'nt responding.
Why is'nt it? Is your api broken? is this some super strange way to throttle requests?
What's happening?