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