Fetch a Network Access Profile resource's Network resource.

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://twilio.demo.bump-doc.com/doc/supersim/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Supersim MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/supersim/mcp"
}
Close
GET /v1/NetworkAccessProfiles/{NetworkAccessProfileSid}/Networks/{Sid}

Mobile operator networks which Network Access Profiles allow access to

Fetch a Network Access Profile resource's Network resource.

Path parameters

  • NetworkAccessProfileSid string Required

    The unique string that identifies the Network Access Profile resource.

  • Sid string Required

    The SID of the Network resource to fetch.

    Minimum length is 34, maximum length is 34. Format should match the following pattern: ^HW[0-9a-fA-F]{32}$.

Responses

  • 200 application/json

    OK

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string

      Specify the origin(s) allowed to access the resource

    • Access-Control-Allow-Methods string

      Specify the HTTP methods allowed when accessing the resource

    • Access-Control-Allow-Headers string

      Specify the headers allowed when accessing the resource

    • Access-Control-Allow-Credentials boolean

      Indicates whether the browser should include credentials

    • Access-Control-Expose-Headers string

      Headers exposed to the client

    Hide response attributes Show response attributes object
    • sid string | null

      The unique string that identifies the Network resource.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^HW[0-9a-fA-F]{32}$.

    • network_access_profile_sid string | null

      The unique string that identifies the Network resource's Network Access Profile resource.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^HA[0-9a-fA-F]{32}$.

    • friendly_name string | null

      A human readable identifier of the Network this resource refers to.

    • iso_country string | null

      The ISO country code of the Network resource.

    • identifiers array | null

      Array of objects identifying the MCC-MNCs that are included in the Network resource.

    • url string(uri) | null

      The absolute URL of the Network resource.

GET /v1/NetworkAccessProfiles/{NetworkAccessProfileSid}/Networks/{Sid}
curl \
 --request GET 'https://supersim.twilio.com/v1/NetworkAccessProfiles/{NetworkAccessProfileSid}/Networks/{Sid}' \
 --user "username:password"
Response examples (200)
{
  "sid": "HWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "network_access_profile_sid": "HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "friendly_name": "AT&T",
  "iso_country": "us",
  "identifiers": [
    {
      "mcc": "310",
      "mnc": "410"
    }
  ],
  "url": "https://supersim.twilio.com/v1/NetworkAccessProfiles/HAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Networks/HWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}