GET api/Forum/GetMaxReportedAssets?forDays={forDays}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| forDays | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GetComplaintToplist_Result| Name | Description | Type | Additional information |
|---|---|---|---|
| AssetType | byte |
None. |
|
| AssetId | integer |
None. |
|
| cnt | integer |
None. |
|
| AssetOwnerMemberId | integer |
None. |
|
| Topic | string |
None. |
|
| MessageText | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AssetType": 64,
"AssetId": 2,
"cnt": 1,
"AssetOwnerMemberId": 1,
"Topic": "sample string 3",
"MessageText": "sample string 4"
},
{
"AssetType": 64,
"AssetId": 2,
"cnt": 1,
"AssetOwnerMemberId": 1,
"Topic": "sample string 3",
"MessageText": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfGetComplaintToplist_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Data">
<GetComplaintToplist_Result>
<AssetId>2</AssetId>
<AssetOwnerMemberId>1</AssetOwnerMemberId>
<AssetType>64</AssetType>
<MessageText>sample string 4</MessageText>
<Topic>sample string 3</Topic>
<cnt>1</cnt>
</GetComplaintToplist_Result>
<GetComplaintToplist_Result>
<AssetId>2</AssetId>
<AssetOwnerMemberId>1</AssetOwnerMemberId>
<AssetType>64</AssetType>
<MessageText>sample string 4</MessageText>
<Topic>sample string 3</Topic>
<cnt>1</cnt>
</GetComplaintToplist_Result>
</ArrayOfGetComplaintToplist_Result>
