...
IMPORTANT - The network name should be a slash subnet addrress address like 192.168.1.0/24. No spaces between the slash and numbers. It should be a valid subnet address. This string is what is tested against when using Blessed Subnets.
...
You can access the /networks collection using the normal Open-AudIT JSON based API. Just like any other collection. Please see the API documentation for further details.
API Routes
Request Method | ID | Action | Resulting Function | URL Example | Notes | Example Response |
---|---|---|---|---|---|---|
GET | n |
collection | /networks | Returns a list of networks. | networks_collection.json | ||
GET | y |
read | /networks/{id} | Returns a network's details. | networks_read.json | |
PATCH | y |
update | /networks/{id} | Update an attribute of a networks entry. | networks_patch.json | |
POST | n |
create | /networks | Insert a new networks entry. | networks_create.json | |
DELETE | y |
delete | /networks/{id} | Delete a networks entry. | networks_delete.json |
Web Application Routes
Request Method | ID | Action | Resulting Function | URL Example | Notes |
---|---|---|---|---|---|
GET | n | create | create_form | /networks/create | Displays a standard web form for submission to POST /networks. |
GET | y | update | update_form | /networks/{id}/update | Show the networks details with the option to update attributes using PATCH to /networks/{id} |
...