Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 727 Bytes

TROUBLESHOOTING.md

File metadata and controls

21 lines (14 loc) · 727 Bytes

If you have a non-library Twilio SendGrid issue, please contact our support team.

If you can't find a solution below, please open an issue.

Table of Contents

Viewing the Request Body

When debugging or testing, it may be useful to examine the raw request body to compare against the documented format.

e.g. on a Client instance, myClient.

foreach (KeyValuePair<DateTime, string> kvp in myClient.RequestHeaders)
{
    Console.WriteLine("Name = {0}, Value = {1}", kvp.Key, kvp.Value);
}