Summary
Gets a network group by its ID.
Description
Gets a network group by its ID.
Route
GET /policy-manager/network-groups/:id
Roles
admin
other
readonly
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
id |
string |
yes |
Id of the network group |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
networkGroup |
object |
Network Group |
Copied to Clipboard
{
"id": "aliquip quis magna cupidatat id",
"name": "dolor incididunt aute irure",
"description": "laborum in",
"addressType": "Mixed",
"networks": [
"aliquip",
"laborum adipisicing",
"Lorem deserunt ut ex cillum",
"Lorem"
],
"created": "2007-12-03T02:12:56.829Z",
"createdBy": "veniam",
"lastUpdated": "2003-02-09T23:29:11.638Z",
"lastUpdatedBy": "ut ipsum consequat"
}
Copied to Clipboard
{
"title": "networkGroup",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"addressType": {
"enum": [
"IPv4",
"IPv6",
"Mixed"
]
},
"networks": {
"type": "array",
"items": {
"title": "networkId",
"type": "string"
}
},
"created": {
"type": "string",
"format": "date-time"
},
"createdBy": {
"type": "string"
},
"lastUpdated": {
"type": "string",
"format": "date-time"
},
"lastUpdatedBy": {
"type": "string"
}
},
"required": [
"id",
"name",
"description",
"addressType",
"networks",
"created",
"createdBy",
"lastUpdated",
"lastUpdatedBy"
]
}