Add Network
POST/allow_list/network
Adds a public network.
The resulting new network does not have any CIDR blocks, so none will be in the response object. You can add a CIDR to the network with Add CIDR
Request
- application/json; charset=UTF-8
Body
required
Model for Public Network
name stringrequired
Network Name
Responses
- 200
- 400
successful operation
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
- Array [
- ]
cidrs object[]
CIDRs
cidr stringrequired
Valid CIDR. CIDR must be of the form [0-255].[0-255].[0-255].[0-255]/[1-32], must not have non-zero bits right of the netmask, and must not overlap any of the RFC 1918 defined private networks.
createdOn int64
Created On
description string
Description
uuid string
CIDR ID
name stringrequired
Network Name
uuid string
Network ID
{
"cidrs": [
{
"cidr": "string",
"createdOn": 0,
"description": "string",
"uuid": "string"
}
],
"name": "string",
"uuid": "string"
}
invalid_parameter_value
Loading...