POST api/GroupChat/AddMembers
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": "ba1715ef-73f5-4002-a9f2-22c7769dd62a", "GroupName": "sample string 1", "GroupImage": "sample string 2", "GroupMembers": [ { "MemberId": "1bfc87b1-79d3-4bfe-b923-8a1fbef7e9c2", "IsLeft": true }, { "MemberId": "1bfc87b1-79d3-4bfe-b923-8a1fbef7e9c2", "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>1bfc87b1-79d3-4bfe-b923-8a1fbef7e9c2</MemberId> </GroupMemberCollectionModel> <GroupMemberCollectionModel> <IsLeft>true</IsLeft> <MemberId>1bfc87b1-79d3-4bfe-b923-8a1fbef7e9c2</MemberId> </GroupMemberCollectionModel> </GroupMembers> <GroupName>sample string 1</GroupName> <Id>ba1715ef-73f5-4002-a9f2-22c7769dd62a</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.