Delete a Network
DELETE/networking/networks/:id
Delete a network. The ID in the path can either be the name of the network (e.g. MYNETWORKPROD
) or object ID.
Request
Path Parameters
id stringrequired
The id
of the network
Responses
200: Successful response
- application/json
401: Authentication error
- application/json
403: Authorization error
- application/json
Request samples
curl -L -X DELETE 'https://api.telnyx.com/networking/networks/:id' \
-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
}
}
{
"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"
}
]
}