如何使用 Twilio PHP SDK 删除 phone 号码?

How to delete a phone number with Twilio PHP SDK?

我正在使用 Twilio PHP SDK。我有一个 phone 号码的 sid。如何删除它?

其余 API 文档显示了一个删除方法,但没有它的代码。

https://www.twilio.com/docs/api/rest/incoming-phone-numbers#list

我在 Stack Overflow 上看过一些示例,但它们似乎都使用了旧版本的 SDK。

灵感来自这里:https://www.twilio.com/docs/api/rest/incoming-phone-numbers?code-sample=code-get-an-incomingphonenumber&code-language=php&code-sdk-version=5.x

delete() Twilio phone 数字的示例代码:

<?php
// Get the PHP helper library from twilio.com/docs/php/install
require_once '/path/to/vendor/autoload.php'; // Loads the library
use Twilio\Rest\Client;

// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
$token = "your_auth_token";
$client = new Client($sid, $token);

// Delete a Twilio number based on its sid. If you do not have a sid,
// check out the list resource examples on this page
$number = $client
    ->incomingPhoneNumbers("PN2a0747eba6abf96b7e3c3ff0b4530f6e")
    ->delete();

警告Once the number is deleted, any code using it, won't work. Be sure you really want to run the code above.