POST
api/v1/user-feedback-summary
Request Information
Body Parameters
ProductReportRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | integer |
None. |
|
| SellerId | integer |
None. |
|
| PageNo | integer |
None. |
|
| PageSize | integer |
None. |
|
| SearchText | string |
None. |
|
| SortField | string |
None. |
|
| SortDirection | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
Request Formats
application/json, text/json
{
"ClientId": 1,
"SellerId": 2,
"PageNo": 3,
"PageSize": 4,
"SearchText": "sample string 5",
"SortField": "sample string 6",
"SortDirection": "sample string 7",
"StartDate": "2026-02-05T05:27:39.4796394+00:00",
"EndDate": "2026-02-05T05:27:39.4796394+00:00"
}
text/html
{"ClientId":1,"SellerId":2,"PageNo":3,"PageSize":4,"SearchText":"sample string 5","SortField":"sample string 6","SortDirection":"sample string 7","StartDate":"2026-02-05T05:27:39.4796394+00:00","EndDate":"2026-02-05T05:27:39.4796394+00:00"}
application/xml, text/xml
<ProductReportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Sku"> <ClientId>1</ClientId> <EndDate>2026-02-05T05:27:39.4796394+00:00</EndDate> <PageNo>3</PageNo> <PageSize>4</PageSize> <SearchText>sample string 5</SearchText> <SellerId>2</SellerId> <SortDirection>sample string 7</SortDirection> <SortField>sample string 6</SortField> <StartDate>2026-02-05T05:27:39.4796394+00:00</StartDate> </ProductReportRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: UserFeedbackSummaryReport
Response Formats
application/json, text/json
{
"UserFeedbackSummaryList": [
{
"Month": "sample string 1",
"TotalReviews": 2,
"TotalRatings": 3,
"TotalStars": 4,
"PositivePerc": 5.0,
"NeutralPerc": 6.0,
"NegativePerc": 7.0,
"AvgRating": 8.0,
"TopPositiveAspect": "sample string 9",
"TopNegativeAspect": "sample string 10"
},
{
"Month": "sample string 1",
"TotalReviews": 2,
"TotalRatings": 3,
"TotalStars": 4,
"PositivePerc": 5.0,
"NeutralPerc": 6.0,
"NegativePerc": 7.0,
"AvgRating": 8.0,
"TopPositiveAspect": "sample string 9",
"TopNegativeAspect": "sample string 10"
}
],
"TotalCount": 1
}
text/html
{"UserFeedbackSummaryList":[{"Month":"sample string 1","TotalReviews":2,"TotalRatings":3,"TotalStars":4,"PositivePerc":5.0,"NeutralPerc":6.0,"NegativePerc":7.0,"AvgRating":8.0,"TopPositiveAspect":"sample string 9","TopNegativeAspect":"sample string 10"},{"Month":"sample string 1","TotalReviews":2,"TotalRatings":3,"TotalStars":4,"PositivePerc":5.0,"NeutralPerc":6.0,"NegativePerc":7.0,"AvgRating":8.0,"TopPositiveAspect":"sample string 9","TopNegativeAspect":"sample string 10"}],"TotalCount":1}
application/xml, text/xml
<UserFeedbackSummaryReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Sku">
<TotalCount>1</TotalCount>
<UserFeedbackSummaryList>
<UserFeedbackSummaryList>
<AvgRating>8</AvgRating>
<Month>sample string 1</Month>
<NegativePerc>7</NegativePerc>
<NeutralPerc>6</NeutralPerc>
<PositivePerc>5</PositivePerc>
<TopNegativeAspect>sample string 10</TopNegativeAspect>
<TopPositiveAspect>sample string 9</TopPositiveAspect>
<TotalRatings>3</TotalRatings>
<TotalReviews>2</TotalReviews>
<TotalStars>4</TotalStars>
</UserFeedbackSummaryList>
<UserFeedbackSummaryList>
<AvgRating>8</AvgRating>
<Month>sample string 1</Month>
<NegativePerc>7</NegativePerc>
<NeutralPerc>6</NeutralPerc>
<PositivePerc>5</PositivePerc>
<TopNegativeAspect>sample string 10</TopNegativeAspect>
<TopPositiveAspect>sample string 9</TopPositiveAspect>
<TotalRatings>3</TotalRatings>
<TotalReviews>2</TotalReviews>
<TotalStars>4</TotalStars>
</UserFeedbackSummaryList>
</UserFeedbackSummaryList>
</UserFeedbackSummaryReport>
