我想通过Nexmo API分配回调URL。

我说的是这个网址:


我只是通过Nexmo API购买了新的SMS号码:Nexmo API docs: 'Buy number'
我为此使用.NET,但是语言无关紧要。

var client = new WebClient();
client.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";

string ApiBuyUrl = "http://rest.nexmo.com/number/buy";
string ApiBuyParams = "api_key={0}&api_secret={1}&country={2}&msisdn={3}";
// params assignment
string buyResultString = client.UploadString(ApiBuyUrl, apiBuyParams);


然后,我想给这个刚购买的号码分配回叫URL。

我阅读了文档,但没有找到任何相关信息。是否可以在运行时实现?

谢谢。

最佳答案

我发现HTTP请求更新了指定电话号码的回调URL。


  开机自检
  / number / update?api_key = {api_key}&api_secret = {api_secret}&country = {country}&msisdn = {msisdn}&moHttpUrl = {url}&moSmppSysType = {sysType}&voiceCallbackType = {type}&voiceCallbackValue = {value}&voiceStatusCallback = {status


Here您将找到更多信息。

10-06 13:01