Twilio - 使用API​​禁用特定号码的SMS

时间:2016-09-29 18:21:41

标签: api twilio

在此页面上: https://support.twilio.com/hc/en-us/articles/223181528-Billing-for-incoming-SMS-messages

它表示我们可以手动或使用API​​删除短信网址,但是没有指向“API”的链接。我无法找到我应该调用哪个API端点来配置' WebHook URLS'?

如何使用API​​配置URL WebHook?

1 个答案:

答案 0 :(得分:1)

显然,您需要在以下位置调用API: / 2010-04-01 /账户/ {AccountSid} / IncomingPhoneNumbers / {IncomingPhoneNumberSid}

example given with the Python API获取具体数字:

number = client.phone_numbers.get("PN2a0747eba6abf96b7e3c3ff0b4530f6e")

更新号码: number =

client.phone_numbers.update("PN2a0747eba6abf96b7e3c3ff0b4530f6e", voice_url="http://demo.twilio.com/docs/voice.xml",
    sms_url="http://demo.twilio.com/docs/sms.xml")