PUT Channels/ChannelsApi/UpsertConversation
Request Information
URI Parameters
None.
Body Parameters
ConversationUpsertInputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ConversationId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| IsChannel | boolean |
None. |
|
| Mute | boolean |
None. |
|
| Star | boolean |
None. |
|
| Hide | boolean |
None. |
|
| MuteTime | integer |
None. |
|
| MutedOn | date |
None. |
|
| MessageDateTime | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ConversationId": "cc816bd5-7bf4-4f29-8869-a7b65f787603",
"UserId": "621afeba-2b9d-488a-8d6c-41feb0765e6d",
"IsChannel": true,
"Mute": true,
"Star": true,
"Hide": true,
"MuteTime": 1,
"MutedOn": "2025-12-14T01:28:44.6041426+00:00",
"MessageDateTime": "2025-12-14T01:28:44.6041426+00:00"
}
application/xml, text/xml
Sample:
<ConversationUpsertInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Communicator.Models.Channels"> <ConversationId>cc816bd5-7bf4-4f29-8869-a7b65f787603</ConversationId> <Hide>true</Hide> <IsChannel>true</IsChannel> <MessageDateTime>2025-12-14T01:28:44.6041426+00:00</MessageDateTime> <Mute>true</Mute> <MuteTime>1</MuteTime> <MutedOn>2025-12-14T01:28:44.6041426+00:00</MutedOn> <Star>true</Star> <UserId>621afeba-2b9d-488a-8d6c-41feb0765e6d</UserId> </ConversationUpsertInputModel>
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.