GET api/notfymessages
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of notfymessage| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| message | string |
String length: inclusive between 0 and 3000 |
|
| isreply | boolean |
None. |
|
| messagedate | date |
None. |
|
| username | string |
String length: inclusive between 0 and 150 |
|
| isread | boolean |
None. |
|
| isnotify | boolean |
None. |
|
| starmessage | integer |
None. |
|
| kindmsg | string |
String length: inclusive between 0 and 50 |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"message": "sample string 2",
"isreply": true,
"messagedate": "2025-12-19T08:47:11.1535146+04:00",
"username": "sample string 3",
"isread": true,
"isnotify": true,
"starmessage": 1,
"kindmsg": "sample string 4"
},
{
"id": 1,
"message": "sample string 2",
"isreply": true,
"messagedate": "2025-12-19T08:47:11.1535146+04:00",
"username": "sample string 3",
"isread": true,
"isnotify": true,
"starmessage": 1,
"kindmsg": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfnotfymessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DreamApp.Models">
<notfymessage>
<id>1</id>
<isnotify>true</isnotify>
<isread>true</isread>
<isreply>true</isreply>
<kindmsg>sample string 4</kindmsg>
<message>sample string 2</message>
<messagedate>2025-12-19T08:47:11.1535146+04:00</messagedate>
<starmessage>1</starmessage>
<username>sample string 3</username>
</notfymessage>
<notfymessage>
<id>1</id>
<isnotify>true</isnotify>
<isread>true</isread>
<isreply>true</isreply>
<kindmsg>sample string 4</kindmsg>
<message>sample string 2</message>
<messagedate>2025-12-19T08:47:11.1535146+04:00</messagedate>
<starmessage>1</starmessage>
<username>sample string 3</username>
</notfymessage>
</ArrayOfnotfymessage>