POST
api/v1/reorder-frequency-report
Request Information
Body Parameters
ProductsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | integer |
None. |
|
| SellerId | integer |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| Search | string |
None. |
|
| OrderBy | string |
None. |
|
| OrderDir | string |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
Request Formats
application/json, text/json
{
"ClientId": 1,
"SellerId": 2,
"PageNumber": 3,
"PageSize": 4,
"Search": "sample string 5",
"OrderBy": "sample string 6",
"OrderDir": "sample string 7",
"FromDate": "2026-02-05T05:27:37.7421736+00:00",
"ToDate": "2026-02-05T05:27:37.7421736+00:00"
}
text/html
{"ClientId":1,"SellerId":2,"PageNumber":3,"PageSize":4,"Search":"sample string 5","OrderBy":"sample string 6","OrderDir":"sample string 7","FromDate":"2026-02-05T05:27:37.7421736+00:00","ToDate":"2026-02-05T05:27:37.7421736+00:00"}
application/xml, text/xml
<ProductsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order"> <ClientId>1</ClientId> <FromDate>2026-02-05T05:27:37.7421736+00:00</FromDate> <OrderBy>sample string 6</OrderBy> <OrderDir>sample string 7</OrderDir> <PageNumber>3</PageNumber> <PageSize>4</PageSize> <Search>sample string 5</Search> <SellerId>2</SellerId> <ToDate>2026-02-05T05:27:37.7421736+00:00</ToDate> </ProductsRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: Collection of ReorderProducts
Response Formats
application/json, text/json
[
{
"CustomerId": 1,
"CustomerName": "sample string 2",
"ProductId": 3,
"ProductName": "sample string 4",
"TotalOrders": 5,
"ReorderCount": 6,
"AvgDaysBetweenOrders": 7,
"LastOrderDate": "2026-02-05T05:27:37.7421736+00:00",
"TotalRows": 9
},
{
"CustomerId": 1,
"CustomerName": "sample string 2",
"ProductId": 3,
"ProductName": "sample string 4",
"TotalOrders": 5,
"ReorderCount": 6,
"AvgDaysBetweenOrders": 7,
"LastOrderDate": "2026-02-05T05:27:37.7421736+00:00",
"TotalRows": 9
}
]
text/html
[{"CustomerId":1,"CustomerName":"sample string 2","ProductId":3,"ProductName":"sample string 4","TotalOrders":5,"ReorderCount":6,"AvgDaysBetweenOrders":7,"LastOrderDate":"2026-02-05T05:27:37.7421736+00:00","TotalRows":9},{"CustomerId":1,"CustomerName":"sample string 2","ProductId":3,"ProductName":"sample string 4","TotalOrders":5,"ReorderCount":6,"AvgDaysBetweenOrders":7,"LastOrderDate":"2026-02-05T05:27:37.7421736+00:00","TotalRows":9}]
application/xml, text/xml
<ArrayOfReorderProducts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order">
<ReorderProducts>
<AvgDaysBetweenOrders>7</AvgDaysBetweenOrders>
<CustomerId>1</CustomerId>
<CustomerName>sample string 2</CustomerName>
<LastOrderDate>2026-02-05T05:27:37.7421736+00:00</LastOrderDate>
<ProductId>3</ProductId>
<ProductName>sample string 4</ProductName>
<ReorderCount>6</ReorderCount>
<TotalOrders>5</TotalOrders>
<TotalRows>9</TotalRows>
</ReorderProducts>
<ReorderProducts>
<AvgDaysBetweenOrders>7</AvgDaysBetweenOrders>
<CustomerId>1</CustomerId>
<CustomerName>sample string 2</CustomerName>
<LastOrderDate>2026-02-05T05:27:37.7421736+00:00</LastOrderDate>
<ProductId>3</ProductId>
<ProductName>sample string 4</ProductName>
<ReorderCount>6</ReorderCount>
<TotalOrders>5</TotalOrders>
<TotalRows>9</TotalRows>
</ReorderProducts>
</ArrayOfReorderProducts>
