Create Multicast Source Site Config (v2.0)
POST/v2.0/api/tenants/:tenant_id/sites/:site_id/multicastsourcesiteconfigs
Create a multicast source site config.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
site_id stringrequired
The site ID where you wish to create multicast source site configs.
- application/json
Body
Details of the multicast source site config to be created
- Array [
- ]
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.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
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.
{
"id": "string",
"site_configs": [
{
"group_ipv4_prefix": "string",
"source_ipv4_address": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "DUPLICATE_MULTICAST_SOURCE_SITE_GRP_IPV4_PREFIX"
}
]
}
}
Loading...