POST api/ListTaskChats
Request Information
URI Parameters
None.
Body Parameters
ChatListParams| Name | Description | Type | Additional information |
|---|---|---|---|
| Uid | integer |
None. |
|
| Id | integer |
None. |
|
| ChatUserName | string |
None. |
|
| str | integer |
None. |
|
| pr | integer |
None. |
|
| Message | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Uid": 1,
"Id": 1,
"ChatUserName": "sample string 1",
"str": 1,
"pr": 1,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<ChatListParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.mcapp.Models"> <ChatUserName>sample string 1</ChatUserName> <Id>1</Id> <Message>sample string 2</Message> <Uid>1</Uid> <pr>1</pr> <str>1</str> </ChatListParams>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ChatListResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Description | string |
None. |
|
| LastUpdate | date |
None. |
|
| NewMessage | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Description": "sample string 1",
"LastUpdate": "2025-12-06T04:57:23.5494671+00:00",
"NewMessage": true
},
{
"Id": 1,
"Description": "sample string 1",
"LastUpdate": "2025-12-06T04:57:23.5494671+00:00",
"NewMessage": true
}
]
application/xml, text/xml
Sample:
<ArrayOfChatListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.mcapp.Models">
<ChatListResult>
<Description>sample string 1</Description>
<Id>1</Id>
<LastUpdate>2025-12-06T04:57:23.5494671+00:00</LastUpdate>
<NewMessage>true</NewMessage>
</ChatListResult>
<ChatListResult>
<Description>sample string 1</Description>
<Id>1</Id>
<LastUpdate>2025-12-06T04:57:23.5494671+00:00</LastUpdate>
<NewMessage>true</NewMessage>
</ChatListResult>
</ArrayOfChatListResult>