Get Security Zone (v2.0)
GET/v2.0/api/tenants/:tenant_id/securityzones/:zone_id
List a security zone.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
zone_id stringrequired
ID of the security zone.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
description
The description of the security zone. Max size = 256.
id string
The security zone ID.
name stringrequired
The name of the zone. Max size = 128.
{
"id": "string",
"name": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "BAD_REQUEST"
}
]
}
}
Loading...