PUT api/GroupChat/UpdateDetails
Request Information
URI Parameters
None.
Body Parameters
GroupChatUpsertInputModelName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
GroupName | string |
None. |
|
GroupImage | string |
None. |
|
GroupMembers | Collection of GroupMemberCollectionModel |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": "354d2484-6e1e-49a0-aa37-c22fcb6571c4", "GroupName": "sample string 1", "GroupImage": "sample string 2", "GroupMembers": [ { "MemberId": "9a7aaafe-adfe-45e4-9d60-ed31cceff797", "IsLeft": true }, { "MemberId": "9a7aaafe-adfe-45e4-9d60-ed31cceff797", "IsLeft": true } ] }
application/xml, text/xml
Sample:
<GroupChatUpsertInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Communicator.Models.GroupChat"> <GroupImage>sample string 2</GroupImage> <GroupMembers> <GroupMemberCollectionModel> <IsLeft>true</IsLeft> <MemberId>9a7aaafe-adfe-45e4-9d60-ed31cceff797</MemberId> </GroupMemberCollectionModel> <GroupMemberCollectionModel> <IsLeft>true</IsLeft> <MemberId>9a7aaafe-adfe-45e4-9d60-ed31cceff797</MemberId> </GroupMemberCollectionModel> </GroupMembers> <GroupName>sample string 1</GroupName> <Id>354d2484-6e1e-49a0-aa37-c22fcb6571c4</Id> </GroupChatUpsertInputModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfCommunicatorJsonResultName | Description | Type | Additional information |
---|---|---|---|
Content | CommunicatorJsonResult |
None. |
|
SerializerSettings | JsonSerializerSettings |
None. |
|
Encoding | Encoding |
None. |
|
Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.