PUT: Modify a Conductor Redundancy Group - Conductor Live

PUT: Modify a Conductor Redundancy Group

Change the name, VIP or VRID of the specified Conductor redundancy group.

HTTP Request and Response

Request URL

PUT http://<Conductor IP address>/conductor_redundancy_groups/<ID of Conductor redundancy group>

Call Header

  • Accept: Set to application/xml

  • Content-Type: Set to application/xml

If you are implementing user authentication, you must also include three authorization headers; see Header Content for User Authentication.

Request Body

The body contains only the elements to change: name, VIP or VRID. For the format and other elements, see POST: Create a Redundancy Group.

Example

This request changes the name of the Conductor redundancy group with the ID 1. It changes the name to RedundancyB.

PUT http://198.51.100.0/conductor_redundancy_groups/1 ------------------------------------------ Content-type:application/vnd.elemental+xml;version=3.3.0 Accept:application/xml ------------------------------------------ <?xml version="1.0" encoding="UTF-8"?> <conductor_redundancy_group> <name>RedundancyB</name> </conductor_redundancy_group>