Access Subnets
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/access-subnets/ |
List access subnets |
| GET | /api/access-subnets/{uuid}/ |
Retrieve access subnet |
| POST | /api/access-subnets/ |
Create an access subnet |
| PUT | /api/access-subnets/{uuid}/ |
Update an access subnet |
| PATCH | /api/access-subnets/{uuid}/ |
Partially update an access subnet |
| DELETE | /api/access-subnets/{uuid}/ |
Delete an access subnet |
List access subnets
Retrieve a list of access subnets. Staff and support users can see all subnets, while other users can only see subnets associated with customers they have a role in.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
access_subnets_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
customer |
string | |
customer_uuid |
string (uuid) | |
description |
string | |
inet |
string | |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
customer |
string (uri) |
Retrieve access subnet
Fetch the details of a specific access subnet by its UUID.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
access_subnets_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
customer |
string (uri) |
Create an access subnet
Create a new access subnet for a customer.
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
AccessSubnetRequest - API Source:
access_subnets_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required |
|---|---|---|
inet |
string | ✓ |
description |
string | |
customer |
string (uri) | ✓ |
201 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
customer |
string (uri) |
Update an access subnet
Update an existing access subnet.
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
- Model Source:
AccessSubnetRequest - API Source:
access_subnets_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
inet |
string | ✓ |
description |
string | |
customer |
string (uri) | ✓ |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
customer |
string (uri) |
Partially update an access subnet
Partially update an existing access subnet.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedAccessSubnetRequest - API Source:
access_subnets_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
inet |
string | |
description |
string |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
customer |
string (uri) |
Delete an access subnet
Delete an existing access subnet.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
access_subnets_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body