我正在尝试从特定的twilio号码获取出站呼叫的总分钟数。我使用的twilio帐户有几十个数字。到目前为止,我已经设法获得所有数字的总分钟数,但我还没有找到通过电话号码过滤的方法。 Anny的建议?
<?php
// Download the library and copy into the folder containing this file.
require('../twilio-php-latest/Services/Twilio.php');
$account_sid = "xxxx"; // Your Twilio account sid
$auth_token = "xxxx"; // Your Twilio auth token
$client = new Services_Twilio($account_sid, $auth_token);
$record = $client->account->usage_records->today->getCategory('calls-outbound');
echo $record->usage ;
?>
答案 0 :(得分:1)
我找到了答案:无法通过电话号码检索统计数据
尽管Usage API应该能够为大多数用例提供必要的数据,但它仍无法通过电话号码提供使用。
https://www.twilio.com/help/faq/twilio-basics/how-can-i-see-my-twilio-data