DELETE Channels/ChannelsApi/ArchiveMembersFromChannel
Request Information
URI Parameters
None.
Body Parameters
ChannelUpsertInputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| OwnerId | globally unique identifier |
None. |
|
| ChannelName | string |
None. |
|
| ChannelImage | string |
None. |
|
| IsDeleted | boolean |
None. |
|
| IsInsert | boolean |
None. |
|
| ChannelMembers | Collection of ChannelMemberModel |
None. |
|
| IsLeft | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "fc9a02b1-c2fd-4559-9a16-03693d285e76",
"OwnerId": "2a721195-67ec-4202-bf31-bf8b373ea2ed",
"ChannelName": "sample string 1",
"ChannelImage": "sample string 2",
"IsDeleted": true,
"IsInsert": true,
"ChannelMembers": [
{
"ChannelMemberId": "b1691f4b-51b7-4c5c-850e-63336bca6f51",
"IsReadOnly": true
},
{
"ChannelMemberId": "b1691f4b-51b7-4c5c-850e-63336bca6f51",
"IsReadOnly": true
}
],
"IsLeft": true
}
application/xml, text/xml
Sample:
<ChannelUpsertInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Communicator.Models.Channels">
<ChannelImage>sample string 2</ChannelImage>
<ChannelMembers>
<ChannelMemberModel>
<ChannelMemberId>b1691f4b-51b7-4c5c-850e-63336bca6f51</ChannelMemberId>
<IsReadOnly>true</IsReadOnly>
</ChannelMemberModel>
<ChannelMemberModel>
<ChannelMemberId>b1691f4b-51b7-4c5c-850e-63336bca6f51</ChannelMemberId>
<IsReadOnly>true</IsReadOnly>
</ChannelMemberModel>
</ChannelMembers>
<ChannelName>sample string 1</ChannelName>
<Id>fc9a02b1-c2fd-4559-9a16-03693d285e76</Id>
<IsDeleted>true</IsDeleted>
<IsInsert>true</IsInsert>
<IsLeft>true</IsLeft>
<OwnerId>2a721195-67ec-4202-bf31-bf8b373ea2ed</OwnerId>
</ChannelUpsertInputModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfCommunicatorJsonResult| Name | 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.