twillio - 热得到一个数字的价格?

时间:2015-11-02 13:50:56

标签: twilio twilio-php

我需要得到每个电话号码的价格,就像在他们的"购买号码"第https://www.twilio.com/user/account/phone-numbers/search

变量$ number不包含此类信息。

week(current date)

1 个答案:

答案 0 :(得分:1)

来自Twilio的Ricky。

您可以使用我们的Pricing API访问定价信息。这将让您按国家/地区查询:

$client = new Pricing_Services_Twilio($AccountSid, $AuthToken);
$country = $client->phoneNumberCountries->get("US");

foreach ($country->phone_number_prices as $p) {
    echo $p->number_type . " " . $p->current_price . "\n";
}

然后,您可以使用该信息通过Available Phone Numbers API调用为您检索的数字正确分配定价。