We discovered an issue when we query Dynamics CRM and the result returns more than 5000 rows. The URI returned for the next batch of 5000 rows fails because there are colons in a timestamp field of the request. The initial request encodes the URI and escapes the colons with a %3a. This seems to work fine. The URI returned from CRM does not escape the colons and throws the [ERROR] The request failed with the following error: [Invalid URI: The Uri scheme is too long.]. It seems to also be related to the number of fields we select or size of the actual URI. But in our testing, when we change the colons manually to %3a in the subsequent URI works properly.