I am able to register the sandbox account using the C#. I can also able to send the SMS messages through my C# API. However for the incoming call events, Incoming SMS events the notification is not raising.
sample code below:
sdk = new SDK(appKey, appSecret, SDK.Server.Sandbox, "CMC CTI Test", "");
var platform = sdk.Platform;
sdk.Platform.Login(phoneNumber, "", password, false);
sub = sdk.CreateSubscription();
sub.NotificationEvent += (sender, e) => {
Console.WriteLine(e.Message);
};
sub.Register();
sample code below:
sdk = new SDK(appKey, appSecret, SDK.Server.Sandbox, "CMC CTI Test", "");
var platform = sdk.Platform;
sdk.Platform.Login(phoneNumber, "", password, false);
sub = sdk.CreateSubscription();
sub.NotificationEvent += (sender, e) => {
Console.WriteLine(e.Message);
};
sub.Register();