POST CIIChat/InsertUpdateChatDetails

Request Information

URI Parameters

None.

Body Parameters

ChatInsert
NameDescriptionTypeAdditional information
ChatFrom

string

None.

ChatTo

string

None.

MSG

string

None.

Image

string

None.

ImageName

string

None.

Attachment

string

None.

AttachmentName

string

None.

IsGroup

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ChatFrom": "sample string 1",
  "ChatTo": "sample string 2",
  "MSG": "sample string 3",
  "Image": "sample string 4",
  "ImageName": "sample string 5",
  "Attachment": "sample string 6",
  "AttachmentName": "sample string 7",
  "IsGroup": true
}

application/xml, text/xml

Sample:
<ChatInsert xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntity">
  <Attachment>sample string 6</Attachment>
  <AttachmentName>sample string 7</AttachmentName>
  <ChatFrom>sample string 1</ChatFrom>
  <ChatTo>sample string 2</ChatTo>
  <Image>sample string 4</Image>
  <ImageName>sample string 5</ImageName>
  <IsGroup>true</IsGroup>
  <MSG>sample string 3</MSG>
</ChatInsert>

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 'ChatInsert'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.