POST Channels/ChannelsApi/AddMembersToChannel
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": "61bab9e6-9659-4137-94ff-9fc41d5ea862", "OwnerId": "b36c2f3e-12a8-4c37-8508-676037f14a3c", "ChannelName": "sample string 1", "ChannelImage": "sample string 2", "IsDeleted": true, "IsInsert": true, "ChannelMembers": [ { "ChannelMemberId": "566cfb63-8b86-4ade-80f9-9cd2bd341ea1", "IsReadOnly": true }, { "ChannelMemberId": "566cfb63-8b86-4ade-80f9-9cd2bd341ea1", "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>566cfb63-8b86-4ade-80f9-9cd2bd341ea1</ChannelMemberId> <IsReadOnly>true</IsReadOnly> </ChannelMemberModel> <ChannelMemberModel> <ChannelMemberId>566cfb63-8b86-4ade-80f9-9cd2bd341ea1</ChannelMemberId> <IsReadOnly>true</IsReadOnly> </ChannelMemberModel> </ChannelMembers> <ChannelName>sample string 1</ChannelName> <Id>61bab9e6-9659-4137-94ff-9fc41d5ea862</Id> <IsDeleted>true</IsDeleted> <IsInsert>true</IsInsert> <OwnerId>b36c2f3e-12a8-4c37-8508-676037f14a3c</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.