Network ACL
Named ACL lists containing ordered allow/deny rules, applied to VPC tiers.
Resource base path: /restapi/networkacllist
| Method | Path | Description |
|---|---|---|
POST | /restapi/networkacllist/createNetworkAcl | Create Network ACL |
GET | /restapi/networkacllist/networkAclList | Network ACL List |
DELETE | /restapi/networkacllist/deleteNetworkAcl/{uuid} | Delete Network ACL |
note
apikey and secretkey are required HTTP headers on every request and are omitted from the parameter tables below. See Authentication.
Create Network ACL
Create Network ACL.
POST /restapi/networkacllist/createNetworkAcl
Request body
| Field | Type | Required | Description |
|---|---|---|---|
name | string | No | Name of the resource. |
description | string | No | Human-readable description. |
vpcUuid | string | No | UUID of the VPC. |
{
"name": "example-name",
"description": "string",
"vpcUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
Example request
curl -X POST \
"https://portal.your-domain.com/restapi/networkacllist/createNetworkAcl" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "example-name",
"description": "string",
"vpcUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}'
Responses
| Code | Description |
|---|---|
200 | Successful operation. |
401 | Invalid authentication credentials. |
550 | Permission denied. |
{
"count": 1,
"listNetworkAclListResponse": [
{
"name": "example-name",
"zoneUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"description": "string",
"isActive": true,
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"vpcUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "Active"
}
]
}
Network ACL List
Network ACL List.
GET /restapi/networkacllist/networkAclList
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
zoneUuid | query | string | ✅ Yes | UUID of the zone the resource belongs to. |
uuid | query | string | No | UUID of the resource. |
vpcUuid | query | string | No | UUID of the VPC. |
Example request
curl -X GET \
"https://portal.your-domain.com/restapi/networkacllist/networkAclList?zoneUuid=a1b2c3d4-e5f6-7890-abcd-ef1234567890" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY"
Responses
| Code | Description |
|---|---|
200 | Successful operation. |
401 | Invalid authentication credentials. |
550 | Permission denied. |
{
"count": 1,
"listNetworkAclListResponse": [
{
"name": "example-name",
"zoneUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"description": "string",
"isActive": true,
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"vpcUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "Active"
}
]
}
Delete Network ACL
Delete Network ACL.
DELETE /restapi/networkacllist/deleteNetworkAcl/{uuid}
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
uuid | path | string | ✅ Yes | UUID of the resource. |
Example request
curl -X DELETE \
"https://portal.your-domain.com/restapi/networkacllist/deleteNetworkAcl/a1b2c3d4-e5f6-7890-abcd-ef1234567890" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY"
Responses
| Code | Description |
|---|---|
200 | Successful operation. |
204 | No content. |
401 | Invalid authentication credentials. |
550 | Permission denied. |
true