Using SendMail V1 and C # as follows I can know if an email is on the bounces list and I get information:
var client = new SendGridClient(this.apiKey);
var response = client.RequestAsync(method: SendGridClient.Method.GET, urlPath: "suppression/bounces/" + email).GetAwaiter().GetResult();
dynamic dynJson = JsonConvert.DeserializeObject(response.Body.ReadAsStringAsync().Result);
Now I want to delete a single mail from the lists no matter what kind it is. How do I prepare the request to make that elimination?