PUT Channels/ChannelsApi/UpdateChannel
Request Information
URI Parameters
None.
Body Parameters
ChannelUpsertInputModelName | 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. |
Request Formats
application/json, text/json
Sample:
{ "Id": "8de87eee-3671-49a9-8c0b-265c6ad096ec", "OwnerId": "c13a2017-1487-4021-83a8-253d8397da75", "ChannelName": "sample string 1", "ChannelImage": "sample string 2", "IsDeleted": true, "IsInsert": true, "ChannelMembers": [ { "ChannelMemberId": "42dc38f3-ce9a-4e44-a294-551366ee79b1", "IsReadOnly": true }, { "ChannelMemberId": "42dc38f3-ce9a-4e44-a294-551366ee79b1", "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>42dc38f3-ce9a-4e44-a294-551366ee79b1</ChannelMemberId> <IsReadOnly>true</IsReadOnly> </ChannelMemberModel> <ChannelMemberModel> <ChannelMemberId>42dc38f3-ce9a-4e44-a294-551366ee79b1</ChannelMemberId> <IsReadOnly>true</IsReadOnly> </ChannelMemberModel> </ChannelMembers> <ChannelName>sample string 1</ChannelName> <Id>8de87eee-3671-49a9-8c0b-265c6ad096ec</Id> <IsDeleted>true</IsDeleted> <IsInsert>true</IsInsert> <OwnerId>c13a2017-1487-4021-83a8-253d8397da75</OwnerId> </ChannelUpsertInputModel>
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.