POST api/chat/send-chat

Request Information

URI Parameters

None.

Body Parameters

ChatData
NameDescriptionTypeAdditional information
SENDER_SEQ

integer

None.

RECEIVER_SEQ

integer

None.

MESSAGE

string

None.

SENDER_NAME

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SENDER_SEQ": 1,
  "RECEIVER_SEQ": 2,
  "MESSAGE": "sample string 3",
  "SENDER_NAME": "sample string 4"
}

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

Response Information

Resource Description

ResponseMessage
NameDescriptionTypeAdditional information
STATUS

string

None.

MESSAGE

string

None.

VALUE

string

None.

Response Formats

application/json, text/json

Sample:
{
  "STATUS": "sample string 1",
  "MESSAGE": "sample string 2",
  "VALUE": "sample string 3"
}