Get Multicast Peer Groups (v2.0)
GET/v2.0/api/tenants/:tenant_id/multicastpeergroups
List all the multicast peer groups.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
count int32
The actual count.
id string
The ID.
tenant_id string
The tenant ID.
items MulticastPeerGroup[]
description
The multicast peer group descriptions.
id string
The multicast peer group ID.
name stringrequired
The name of the multicast peer group. Max limit = 128.
peer_sites MulticastPeerSite[]required
The multicast peer site ID.
peer_site_id string
The peer site ID.
tags string[]
A information field that can be added to identify the multicast peer group. Maximum 10 unique tags of length 128 each are allowed.
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{
"id": "string",
"name": "string",
"peer_sites": [
{
"peer_site_id": "string"
}
],
"tags": [
"string"
]
}
]
}
Loading...