Hi, My code is in C#. It is a texting app. I am assuming that after sending a single SMS message, I should be able to determine if that single call exceeded the rate limit. My call to send a SMS message is as follows:
var resp = await restClient.Restapi().Account().Extension().Sms().Post(requestBody);
Once control returns from the await, how do I obtain the info on whether the rate limit was exceeded? Is an exception thrown? Is there a return structure? Do I have to make another call to read the RateLmit results of above Sms.Post() ?
A C# example to get the Rate Limit info of the above call would be very helpful.
Thank you,
Jim