DELETE Channels/ChannelsApi/ArchiveMembersFromChannel

Request Information

URI Parameters

None.

Body Parameters

ChannelUpsertInputModel
NameDescriptionTypeAdditional 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.

Request Formats

application/json, text/json

Sample:
{
  "Id": "61f07c16-f474-4176-9635-b92aae3f513b",
  "OwnerId": "f06a5045-13d5-45ac-8df2-6764e6340de7",
  "ChannelName": "sample string 1",
  "ChannelImage": "sample string 2",
  "IsDeleted": true,
  "IsInsert": true,
  "ChannelMembers": [
    {
      "ChannelMemberId": "30795b34-f97c-4bc7-b942-36eaa2c9c584",
      "IsReadOnly": true
    },
    {
      "ChannelMemberId": "30795b34-f97c-4bc7-b942-36eaa2c9c584",
      "IsReadOnly": 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>30795b34-f97c-4bc7-b942-36eaa2c9c584</ChannelMemberId>
      <IsReadOnly>true</IsReadOnly>
    </ChannelMemberModel>
    <ChannelMemberModel>
      <ChannelMemberId>30795b34-f97c-4bc7-b942-36eaa2c9c584</ChannelMemberId>
      <IsReadOnly>true</IsReadOnly>
    </ChannelMemberModel>
  </ChannelMembers>
  <ChannelName>sample string 1</ChannelName>
  <Id>61f07c16-f474-4176-9635-b92aae3f513b</Id>
  <IsDeleted>true</IsDeleted>
  <IsInsert>true</IsInsert>
  <OwnerId>f06a5045-13d5-45ac-8df2-6764e6340de7</OwnerId>
</ChannelUpsertInputModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonResultOfCommunicatorJsonResult
NameDescriptionTypeAdditional information
Content

CommunicatorJsonResult

None.

SerializerSettings

JsonSerializerSettings

None.

Encoding

Encoding

None.

Request

HttpRequestMessage

None.

Response Formats

application/json, text/json

Sample:

Sample not available.