Create Subnet Group
Creates a new subnet group.
Required Permissions
Requires the ADMIN role or higher.
HTTP Request
POST /api/sonar/subnet-groups
cURL Example
curl -H "Authorization: Bearer <API_KEY>" \
-d name="OA" \
-d description="Office zone" \
-X POST \
https://HOSTNAME/api/sonar/subnet-groups
Request Parameters
| Key | Required | Type | Description | Note |
|---|---|---|---|---|
| guid | X | String | Subnet group GUID | 36 characters. Randomly generated if not specified. |
| name | O | String | Subnet group name | Minimum 1 to maximum 50 characters |
| description | X | String | Subnet description | Maximum 50 characters |
Success Response
{}
Error Responses
Required argument is missing
HTTP status code 400
{
"error_code": "null-argument",
"error_msg": "name should be not null"
}
Invalid argument length
HTTP status code 400
{
"error_code": "invalid-argument",
"error_msg": "'name' must be less than or equal to 50 characters."
}
Duplicate group name
HTTP status code 500
{
"error_code": "illegal-state",
"error_msg": "duplicated subnet group name: OA"
}
No privilege to create a subnet group
HTTP status code 500
{
"error_code": "illegal-state",
"error_msg": "no-permission"
}