var client = new RestClient("http://localhost:XXXX/v1/search");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
var body = @"{""source"": ""non-archived"", ""fields"": [""type"", ""title"", ""tags"", ""cuepoints"", ""data""], ""filter"": { ""artist"": ""Dr. Peacock"", ""title"": ""Medication"" } }";
request.AddParameter("application/json", body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
var client = new RestClient("http://localhost:XXXX/v1/search");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
var body = @"{""source"": ""non-archived"", ""fields"": [""type"", ""title"", ""tags"", ""cuepoints"", ""data""], ""filter"": { ""artist"": ""Dr. Peacock"", ""title"": ""Medication"" } }";
request.AddParameter("application/json", body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);