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
- application/json
401: Authentication error
- application/json
403: Authorization error
- application/json
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
}
}
{
"errors": [
{
"code": "10001",
"title": "error title",
"detail": "additional detail about the error",
"pointer": "/pointer/to/field"
}
]
}
{
"errors": [
{
"code": "10001",
"title": "error title",
"detail": "additional detail about the error",
"pointer": "/pointer/to/field"
}
]
}