Skip to main content

Get all Networks

GET 
/networking/networks

Returns a list of all your networks

Request

Query Parameters

    page[number] number

    Current page based on pagination settings.

    page[size] number

    Number of results to return per page based on pagination settings.

Responses

200: Successful response

401: Authentication error

403: Authorization error

Request samples


curl -L 'https://api.telnyx.com/networking/networks' \
-H 'Accept: application/json'

Response samples


{
"data": [
{
"id": 0,
"site_ids": [
"string"
],
"ip_address_count": 0,
"name": "string",
"record_type": "string",
"resource_group_id": "string",
"site_count": 0,
"transit_count": 0,
"transport_count": 0,
"vxc_count": 0
}
],
"meta": {
"total_pages": 13,
"total_results": 13,
"page_number": 3,
"page_size": 1
}
}