PUT api/v1/addressbook/groups/{groupID}
This method updates the group name of the group provided. The system will check that the new name does not already exist for the account.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
groupID |
The group to be modified |
globally unique identifier |
Required |
Body Parameters
Either xml or json request.
GroupName | Description | Type | Additional information |
---|---|---|---|
GroupName |
The name of the group. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{ "GroupName": "sample string 1", "GroupID": "9d12471a-fc18-47d0-8f7f-7c9d003865e9" }
application/xml, text/xml
Sample:
<Group xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <GroupName>sample string 1</GroupName> <GroupID>9d12471a-fc18-47d0-8f7f-7c9d003865e9</GroupID> </Group>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseOfGroupName | Description | Type | Additional information |
---|---|---|---|
Error | Error |
None. |
|
ResponseData | ResponseDataOfGroup |
None. |
Response Formats
application/json, text/json
Sample:
{ "Error": { "ErrorCode": "sample string 1", "ErrorReason": "sample string 2" }, "ResponseData": { "Identification": { "UserId": "sample string 1" }, "Result": "sample string 1", "Detail": { "GroupName": "sample string 1", "GroupID": "924652a0-9b74-4007-801b-107583f4f4bb" } } }
application/xml, text/xml
Sample:
<ResponseOfGroup xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Error> <ErrorCode>sample string 1</ErrorCode> <ErrorReason>sample string 2</ErrorReason> </Error> <ResponseData> <Result>sample string 1</Result> <Identification> <UserId>sample string 1</UserId> </Identification> <Detail> <GroupName>sample string 1</GroupName> <GroupID>924652a0-9b74-4007-801b-107583f4f4bb</GroupID> </Detail> </ResponseData> </ResponseOfGroup>