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": "eiusmod id consectetur aliquip esse",
"name": "Excepteur",
"description": "Excepteur sed do consectetur elit",
"addressType": "Mixed",
"networks": [
"Duis et eu"
],
"created": "2009-04-07T05:17:39.615Z",
"createdBy": "dolor quis sed deserunt anim",
"lastUpdated": "1986-04-16T22:00:16.385Z",
"lastUpdatedBy": "in cupidatat"
}
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"
]
}