我有一个子帐号S1,其中一个电话号码为S1N1。我有另一个Subaccount S2,有100个电话号码。我想在subaccount S2中添加所有这100个电话号码作为子帐户S1的验证callerIds。
如何将所有这100个电话号码添加为子帐号S2的来电号码,而不经过here提及的整个过程100次。有没有办法可以验证所有这些数字,而不必重复这个过程100次?
答案 0 :(得分:0)
您可以使用REST API OutgoingCallerIds List Resource编写脚本来为您执行此操作。我不确定您使用的语言是什么,但PHP的一个例子是:
<?php
// Get the PHP helper library from twilio.com/docs/php/install
require_once('/path/to/twilio-php/Services/Twilio.php'); // Loads the library
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "ACCOUNT_SID";
$token = "AUTH_TOKEN";
$client = new Services_Twilio($sid, $token);
// Loop over the list of caller_ids and echo a property for each one
foreach ($client->account->outgoing_caller_ids as $caller_id) {
// Verify CallerID for subaccount2
}