Click here to Skip to main content
15,917,645 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
call is going with 'enter your 6 digit verification code' but i want ..' your verification code is 6 7 8 9 0 like this..please help me

C#
static void Main(string[] args)
{
   // Find your Account Sid and Auth Token at twilio.com/user/account
   string AccountSid = "AC44ef67e975b469eabf72b357edb5f065";
   string AuthToken = "[AuthToken]";
   var twilio = new TwilioRestClient(AccountSid, AuthToken);

   // Build the parameters
   var options = new OutgoingCallerIdOptions();

   var callerId = twilio.AddOutgoingCallerId("[PhoneNumber]", options);
   Console.WriteLine(callerId.ValidationCode);
}
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900