POST CIIChat/InsertUpdateMuteChatContact

Request Information

URI Parameters

None.

Body Parameters

IUChatContact
NameDescriptionTypeAdditional information
MuteBy

string

None.

MuteTo

Collection of string

None.

MuteFor

date

None.

IsMute

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "MuteBy": "sample string 1",
  "MuteTo": [
    "sample string 1",
    "sample string 2"
  ],
  "MuteFor": "2026-03-05T14:59:33.7977572+05:30",
  "IsMute": true
}

application/xml, text/xml

Sample:
<IUChatContact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntity">
  <IsMute>true</IsMute>
  <MuteBy>sample string 1</MuteBy>
  <MuteFor>2026-03-05T14:59:33.7977572+05:30</MuteFor>
  <MuteTo xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </MuteTo>
</IUChatContact>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'IUChatContact'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.