Retrieve a list of Network Access Profiles from your account.
Retrieve a list of Network Access Profiles from your account.
GET
/v1/NetworkAccessProfiles
curl \
--request GET 'https://supersim.twilio.com/v1/NetworkAccessProfiles' \
--user "username:password"
Response examples (200)
Read empty
{
"meta": {
"key": "network_access_profiles",
"url": "https://supersim.twilio.com/v1/NetworkAccessProfiles?PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://supersim.twilio.com/v1/NetworkAccessProfiles?PageSize=50&Page=0",
"previous_page_url": null
},
"network_access_profiles": []
}
{
"meta": {
"key": "network_access_profiles",
"url": "https://supersim.twilio.com/v1/NetworkAccessProfiles?PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://supersim.twilio.com/v1/NetworkAccessProfiles?PageSize=50&Page=0",
"previous_page_url": null
},
"network_access_profiles": [
{
"sid": "HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://supersim.twilio.com/v1/NetworkAccessProfiles/HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"links": {
"networks": "https://supersim.twilio.com/v1/NetworkAccessProfiles/HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Networks"
},
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"unique_name": "My Network Access Profile",
"date_created": "2020-05-01T20:00:00Z",
"date_updated": "2020-05-01T20:00:00Z"
}
]
}