Retrieve a list of Fleets from your account.
Configure shared settings inherited by all Super SIMs assigned to the Fleet
Retrieve a list of Fleets from your account.
Query parameters
-
The SID or unique name of the Network Access Profile that controls which cellular networks the Fleet's SIMs can connect to.
-
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.
GET
/v1/Fleets
curl \
--request GET 'https://supersim.twilio.com/v1/Fleets' \
--user "username:password"
Response examples (200)
Read empty
{
"meta": {
"key": "fleets",
"url": "https://supersim.twilio.com/v1/Fleets?NetworkAccessProfile=HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://supersim.twilio.com/v1/Fleets?NetworkAccessProfile=HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&PageSize=50&Page=0",
"previous_page_url": null
},
"fleets": []
}
{
"meta": {
"key": "fleets",
"url": "https://supersim.twilio.com/v1/Fleets?NetworkAccessProfile=HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://supersim.twilio.com/v1/Fleets?NetworkAccessProfile=HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&PageSize=50&Page=0",
"previous_page_url": null
},
"fleets": [
{
"sid": "HFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://supersim.twilio.com/v1/Fleets/HFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"data_limit": 1000,
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"unique_name": "Pilot Fleet",
"data_enabled": true,
"date_created": "2019-10-15T20:00:00Z",
"date_updated": "2019-10-15T20:00:00Z",
"data_metering": "payg",
"ip_commands_url": null,
"sms_commands_url": null,
"ip_commands_method": "POST",
"sms_commands_method": "POST",
"sms_commands_enabled": true,
"network_access_profile_sid": "HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}
]
}