GET api/supports/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
support| 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. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"message": "sample string 2",
"isreply": true,
"messagedate": "2025-12-19T08:44:21.7074253+04:00",
"username": "sample string 3",
"isread": true,
"isnotify": true,
"starmessage": 1
}
application/xml, text/xml
Sample:
<support xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DreamApp.Models"> <id>1</id> <isnotify>true</isnotify> <isread>true</isread> <isreply>true</isreply> <message>sample string 2</message> <messagedate>2025-12-19T08:44:21.7074253+04:00</messagedate> <starmessage>1</starmessage> <username>sample string 3</username> </support>