POST Channels/ChannelsApi/CreateChannel
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": "19b890d9-260a-4224-8a71-20dcdfdf17f1", "OwnerId": "a24b08d3-a0be-4a5e-b524-268aa2e2c512", "ChannelName": "sample string 1", "ChannelImage": "sample string 2", "IsDeleted": true, "IsInsert": true, "ChannelMembers": [ { "ChannelMemberId": "1f9c4f3c-304e-46e6-9231-651632641b95", "IsReadOnly": true }, { "ChannelMemberId": "1f9c4f3c-304e-46e6-9231-651632641b95", "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>1f9c4f3c-304e-46e6-9231-651632641b95</ChannelMemberId> <IsReadOnly>true</IsReadOnly> </ChannelMemberModel> <ChannelMemberModel> <ChannelMemberId>1f9c4f3c-304e-46e6-9231-651632641b95</ChannelMemberId> <IsReadOnly>true</IsReadOnly> </ChannelMemberModel> </ChannelMembers> <ChannelName>sample string 1</ChannelName> <Id>19b890d9-260a-4224-8a71-20dcdfdf17f1</Id> <IsDeleted>true</IsDeleted> <IsInsert>true</IsInsert> <OwnerId>a24b08d3-a0be-4a5e-b524-268aa2e2c512</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.