Update Multicast RP Config (v2.0)
PUT/v2.0/api/tenants/:tenant_id/sites/:site_id/elements/:element_id/multicastrps/:config_id
Updates the existing multicast RP config.
Request
Path Parameters
ID of the tenant.
ID of the site.
ID of the element.
The multicast config ID.
- application/json
Body
Details of the Multicast RP config to be updated
- Array [
- ]
The description of the multicast RP configuration.
groups Group[]required
The multicast group address. Max length 1024.
The IPv4 prefix of the for the multicast.
The Active RP for the multicast.
The ID of the multicast RP.
The address of the IPv4.
The resource name. Max length 128.
A information field that can be added to identify the event multicast RP config. Maximum 10 unique tags of length 1024 each are allowed.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The description of the multicast RP configuration.
groups Group[]required
The multicast group address. Max length 1024.
The IPv4 prefix of the for the multicast.
The Active RP for the multicast.
The ID of the multicast RP.
The address of the IPv4.
The resource name. Max length 128.
A information field that can be added to identify the event multicast RP config. Maximum 10 unique tags of length 1024 each are allowed.
{
"groups": [
{
"ipv4_prefix": "string",
"is_active_rp": true
}
],
"id": "string",
"ipv4_address": "string",
"name": "string",
"tags": [
"string"
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
The error code.
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_JSON_INPUT"
},
{
"code": "MULTICAST_RPCONFIG_INVALID_ADDRESS"
},
{
"code": "MULTICAST_RPCONFIG_OVERLAPPING_ADDRESS"
}
]
}
}