C# VERIFY CODE
using (WebClient client = new WebClient()) { client.Headers.Add("Authorization", "YOUR_ACCESS_KEY"); byte[] response = client.UploadValues("http://rest.sendmode.com/v2/verify", new NameValueCollection() { { "code", "YOUR_VERIFY_CODE" }, { "recipient", "0870000000"} }); string result = System.Text.Encoding.UTF8.GetString(response); }