PUT api/Village/{village}/Conversation/{conversationId}/Title
Change the title/subject of a group conversation
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
conversationId |
ID of the conversation |
globally unique identifier |
Required |
village | string |
None. |
Body Parameters
The new title/subject
UpdateSubjectModelName | Description | Type | Additional information |
---|---|---|---|
value |
New Title/Subject of the conversation |
string |
Required String length: inclusive between 0 and 80 |
Request Formats
application/json, text/json
Sample:
{ "value": "sample string 1" }
application/xml, text/xml
Sample:
<UpdateSubjectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaringVillage.Shared.Implementation.Models"> <value>sample string 1</value> </UpdateSubjectModel>
multipart/form-data
Sample:
Response Information
Resource Description
PrimitiveOfBooleanName | Description | Type | Additional information |
---|---|---|---|
value | boolean |
Required |
Response Formats
application/json, text/json
Sample:
{ "value": true }
application/xml, text/xml
Sample:
<PrimitiveOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaringVillage.API.Models"> <value>true</value> </PrimitiveOfboolean>