Hi everyone, I have implemented paging in the code as shown below. If the records are more than/equal to 9K, however, an application error says: "http.status.internal_server_error:We are currently experiencing an issue with our service, please try again in a few minutes or contact Customer Support at webservices@constantcontact.com." (We've contacted the email provided but have yet to receive a response.) My question: How can we handle this issue if there are records exceeding 9K? myContactlist = _contact.GetContacts(null, 500, modifiedsince, null);//to fetch all the records(active+optout) //myContactlist = _contact.GetContacts(null, 500, modifiedsince, ContactStatus.OPTOUT); //pagination to fetch the records >500 var pagination = myContactlist.Meta.Pagination; //pagination to fetch the records >500 // if there are more then 500 results, pagination.Next is populated // with the next URL to fetch while (pagination.Next != null) { ResultSet<Contact> morecontacts = _contact.GetContacts(modifiedsince, pagination); myContactlist.Results = myContactlist.Results.Union(morecontacts.Results).ToList(); pagination = morecontacts.Meta.Pagination; } If I call this through the API, it also fails: https://api.constantcontact.com/v2/contacts?next=c3RhcnRBdD0xMjQ1MDYxNjYzJmxpbWl0PTUwMCZtb2RpZmllZF9zaW5jZT0yMDE1LTAxLTA3VDAwOjAwOjAwLjAwMFo&api_key=<apikey>&access_token=<access token> I've provided screenshots for your reference. Thanks for your time. Kind regards, Nick
... View more