

# PUT: Modify a Conductor Redundancy Group
<a name="set-up-conductor-redundancy-groups-modify"></a>

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

## HTTP Request and Response
<a name="set-up-conductor-redundancy-groups-modify-http-request-response"></a>

### Request URL
<a name="set-up-conductor-redundancy-groups-modify-http-request-response-url"></a>

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

### Call Header
<a name="set-up-conductor-redundancy-groups-modify-http-request-response-call-header"></a>
+ 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](header-content-user.md).

### Request Body
<a name="set-up-conductor-redundancy-groups-modify-http-request-response-request-body"></a>

The body contains only the elements to change: name, VIP or VRID. For the format and other elements, see [POST: Create a Redundancy Group](set-up-redundancy-groups-create.md).

## Example
<a name="set-up-conductor-redundancy-groups-modify-example"></a>

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>
```