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": "amet",
"name": "Lorem aute Excepteur",
"description": "esse tempor nostrud",
"addressType": "IPv4",
"networks": [
"eiusmod cillum",
"dolor"
],
"created": "2001-03-15T02:19:33.989Z",
"createdBy": "ea mollit",
"lastUpdated": "1942-06-13T11:43:47.978Z",
"lastUpdatedBy": "Ut"
}
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"
]
}