I\'m new to Nest, and I very likely am not creating my query like I think I am. My question is more along the lines of teach a man to fish rather than give me a fish. However,
You can get the values of search request URL and JSON request body as under:
var requestURL = response.RequestInformation.RequestUrl; var jsonBody = Encoding.UTF8.GetString(response.RequestInformation.Request);
You can find other useful properties in RequestInformation for debugging.
RequestInformation