POST api/chat/v2/send
Request Information
URI Parameters
None.
Body Parameters
Chat| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| chat_id | string |
None. |
|
| chat_type | integer |
None. |
|
| sender | integer |
None. |
|
| receiver | integer |
None. |
|
| date | date |
None. |
|
| message | string |
None. |
|
| type | integer |
None. |
|
| seen | date |
None. |
|
| members | string |
None. |
|
| other | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"chat_id": "sample string 2",
"chat_type": 3,
"sender": 4,
"receiver": 5,
"date": "2025-12-06T04:34:47.8764291+00:00",
"message": "sample string 7",
"type": 8,
"seen": "2025-12-06T04:34:47.8764291+00:00",
"members": "sample string 10",
"other": "sample string 11"
}
application/xml, text/xml
Sample:
<Chat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Stocks.Models"> <chat_id>sample string 2</chat_id> <chat_type>3</chat_type> <date>2025-12-06T04:34:47.8764291+00:00</date> <id>1</id> <members>sample string 10</members> <message>sample string 7</message> <other>sample string 11</other> <receiver>5</receiver> <seen>2025-12-06T04:34:47.8764291+00:00</seen> <sender>4</sender> <type>8</type> </Chat>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.