Create a new Network Access Profile
TODO: Resource-level docs
Create a new Network Access Profile
Body
-
Networks array[string]
List of Network SIDs that this Network Access Profile will allow connections to.
-
UniqueName string
An application-defined string that uniquely identifies the resource. It can be used in place of the resource's
sid
in the URL to address the resource.
POST /v1/NetworkAccessProfiles
curl \
-X POST https://supersim.twilio.com/v1/NetworkAccessProfiles \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Networks=string&UniqueName=string'
Request example
{
"Networks": [
"string"
],
"UniqueName": "string"
}
Request examples
{
"Networks": [
"string"
],
"UniqueName": "string"
}
Response examples (201)
{
"account_sid": "string",
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"links": {},
"sid": "string",
"unique_name": "string",
"url": "https://example.com"
}
Response examples (201)
{
"account_sid": "string",
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"links": {},
"sid": "string",
"unique_name": "string",
"url": "https://example.com"
}