2016-04-29 9 views

答えて

0

それはmedia instance resourceのプロパティではありませんが、あなたは使用状況レコードにこの情報を見つけることができます。ここmediastorageのparamアウト

チェック:

https://www.twilio.com/docs/api/rest/usage-records#usage-sms-mms

これはアカウントに保存されたメディアによって使用されるストレージの量です。 Countは格納されているメディアファイルの数、Usageはメガバイト数、Priceはメディアの格納価格です。 Pythonの例:

# Download the Python helper library from twilio.com/docs/python/install 
from twilio.rest import TwilioRestClient 

# Your Account Sid and Auth Token from twilio.com/user/account 
account_sid = "YOUR_ACCOUNT_SID" 
auth_token = "YOUR_AUTH_TOKEN" 
client = TwilioRestClient(account_sid, auth_token) 

# A list of record objects with the properties described above 
records = client.usage.records.today.list(category="mediastorage") 
関連する問題