Usage information for SIMs
Path parameters
-
The SID of the Sim resource to read the usage from.
Query parameters
-
Only include usage that occurred on or before this date, specified in ISO 8601. The default is the current time.
-
Only include usage that has occurred on or after this date, specified in ISO 8601. The default is one month before the
endparameter value. -
How to summarize the usage by time. Can be:
daily,hourly, orall. The default isall. A value ofallreturns one Usage Record that describes the usage for the entire period.Values are
hourly,daily, orall. -
How many resources to return in each list page. The default is 50, and the maximum is 1000.
Minimum value is
1, maximum value is1000. -
The page index. This value is simply for client state.
Minimum value is
0. -
The page token. This is provided by the API.
curl \
--request GET 'https://wireless.twilio.com/v1/Sims/{SimSid}/UsageRecords' \
--user "username:password"
{
"usage_records": [
{
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"commands": {
"billing_units": "USD",
"billed": 0,
"total": 3,
"from_sim": 1,
"to_sim": 2,
"home": {
"billing_units": "USD",
"billed": 0,
"total": 3,
"from_sim": 1,
"to_sim": 2
},
"national_roaming": {
"billing_units": "USD",
"billed": 0,
"total": 0,
"from_sim": 0,
"to_sim": 0
},
"international_roaming": []
},
"data": {
"billing_units": "USD",
"billed": 0.35,
"total": 3494609,
"upload": 731560,
"download": 2763049,
"units": "bytes",
"home": {
"billing_units": "USD",
"billed": 0.35,
"total": 3494609,
"upload": 731560,
"download": 2763049,
"units": "bytes"
},
"national_roaming": {
"billing_units": "USD",
"billed": 0,
"total": 0,
"upload": 0,
"download": 0,
"units": "bytes"
},
"international_roaming": []
},
"sim_sid": "DEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"period": {
"start": "2015-07-30T20:00:00Z",
"end": "2015-07-30T20:00:00Z"
}
},
{
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"commands": {},
"data": {},
"sim_sid": "DEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"period": {}
}
],
"meta": {
"first_page_url": "https://wireless.twilio.com/v1/Sims/DEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/UsageRecords?Start=2015-07-30T20%3A00%3A00Z&End=2015-07-30T20%3A00%3A00Z&PageSize=50&Page=0",
"key": "usage_records",
"next_page_url": null,
"page": 0,
"page_size": 50,
"previous_page_url": null,
"url": "https://wireless.twilio.com/v1/Sims/DEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/UsageRecords?Start=2015-07-30T20%3A00%3A00Z&End=2015-07-30T20%3A00%3A00Z&PageSize=50&Page=0"
}
}