POST api/chat/send-chat
Request Information
URI Parameters
None.
Body Parameters
ChatDataName | Description | Type | Additional 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:
Response Information
Resource Description
ResponseMessageName | Description | Type | Additional 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" }