Retrieve a list of Network resources.
Mobile operator networks to which Super SIMs can connect
Retrieve a list of Network resources.
Query parameters
-
The ISO country code of the Network resources to read.
-
The 'mobile country code' of a country. Network resources with this
mcc
in theiridentifiers
will be read. -
The 'mobile network code' of a mobile operator network. Network resources with this
mnc
in theiridentifiers
will be read. -
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/Networks
curl \
--request GET 'https://supersim.twilio.com/v1/Networks' \
--user "username:password"
Response examples (200)
Read
{
"meta": {
"key": "networks",
"url": "https://supersim.twilio.com/v1/Networks?PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://supersim.twilio.com/v1/Networks?PageSize=50&Page=0",
"previous_page_url": null
},
"networks": [
{
"sid": "HWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://supersim.twilio.com/v1/Networks/HWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"identifiers": [
{
"mcc": "310",
"mnc": "410"
}
],
"iso_country": "US",
"friendly_name": "AT&T"
}
]
}
{
"meta": {
"key": "networks",
"url": "https://supersim.twilio.com/v1/Networks?IsoCountry=US&Mnc=410&Mcc=310&PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://supersim.twilio.com/v1/Networks?IsoCountry=US&Mnc=410&Mcc=310&PageSize=50&Page=0",
"previous_page_url": null
},
"networks": [
{
"sid": "HWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://supersim.twilio.com/v1/Networks/HWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"identifiers": [
{
"mcc": "310",
"mnc": "410"
}
],
"iso_country": "US",
"friendly_name": "AT&T"
}
]
}