Get Multicast Source Site Configs (v2.0)
GET/v2.0/api/tenants/:tenant_id/sites/:site_id/multicastsourcesiteconfigs
Use the API to get multicast source site configs.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
site_id stringrequired
The site ID from where you wish to get multicast source site configs.
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 MulticastSourceSiteConfig[]
id string
The multicast source side RP ID.
site_configs SiteConfig[]required
The multicast source site config list. Max size = 64.
group_ipv4_prefix string
The group IPv4 prefix.
source_ipv4_address string
The source side IPv4 address.
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{
"id": "string",
"site_configs": [
{
"group_ipv4_prefix": "string",
"source_ipv4_address": "string"
}
]
}
]
}
Loading...