POST api/Community/LoadTopicList
Request Information
URI Parameters
None.
Body Parameters
CommunityCommentsViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| communitycommentsid | integer |
None. |
|
| communitymasterid | integer |
None. |
|
| logininfoid | integer |
None. |
|
| commentdate | date |
None. |
|
| commenttext | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"communitycommentsid": 1,
"communitymasterid": 2,
"logininfoid": 3,
"commentdate": "2025-12-09T17:07:15.6170029+05:30",
"commenttext": "sample string 5"
}
application/xml, text/xml
Sample:
<CommunityCommentsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models"> <commentdate>2025-12-09T17:07:15.6170029+05:30</commentdate> <commenttext>sample string 5</commenttext> <communitycommentsid>1</communitycommentsid> <communitymasterid>2</communitymasterid> <logininfoid>3</logininfoid> </CommunityCommentsViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
|
| errorCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"data": {},
"errorCode": 4
}
application/xml, text/xml
Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models"> <data /> <errorCode>4</errorCode> <message>sample string 2</message> <status>true</status> </HttpResultViewModel>