POST
api/v1/demographic-purchase-analysis-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:35.8328049+00:00",
"ToDate": "2026-02-05T05:27:35.8328049+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:35.8328049+00:00","ToDate":"2026-02-05T05:27:35.8328049+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:35.8328049+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:35.8328049+00:00</ToDate> </ProductsRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: Collection of DemographicPurchaseAnalysisReport
Response Formats
application/json, text/json
[
{
"AgeGroup": "sample string 1",
"Gender": "sample string 2",
"TotalOrders": 3,
"ActiveOrders": 4,
"TotalSales": 5.0,
"NetOrderAmount": 6.0,
"AvgOrderValue": 7.0,
"TopCategoriesPurchased": "sample string 8",
"TotalCustomers": 9,
"ConversionRate": 10.0,
"TotalCount": 11
},
{
"AgeGroup": "sample string 1",
"Gender": "sample string 2",
"TotalOrders": 3,
"ActiveOrders": 4,
"TotalSales": 5.0,
"NetOrderAmount": 6.0,
"AvgOrderValue": 7.0,
"TopCategoriesPurchased": "sample string 8",
"TotalCustomers": 9,
"ConversionRate": 10.0,
"TotalCount": 11
}
]
text/html
[{"AgeGroup":"sample string 1","Gender":"sample string 2","TotalOrders":3,"ActiveOrders":4,"TotalSales":5.0,"NetOrderAmount":6.0,"AvgOrderValue":7.0,"TopCategoriesPurchased":"sample string 8","TotalCustomers":9,"ConversionRate":10.0,"TotalCount":11},{"AgeGroup":"sample string 1","Gender":"sample string 2","TotalOrders":3,"ActiveOrders":4,"TotalSales":5.0,"NetOrderAmount":6.0,"AvgOrderValue":7.0,"TopCategoriesPurchased":"sample string 8","TotalCustomers":9,"ConversionRate":10.0,"TotalCount":11}]
application/xml, text/xml
<ArrayOfDemographicPurchaseAnalysisReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order">
<DemographicPurchaseAnalysisReport>
<ActiveOrders>4</ActiveOrders>
<AgeGroup>sample string 1</AgeGroup>
<AvgOrderValue>7</AvgOrderValue>
<ConversionRate>10</ConversionRate>
<Gender>sample string 2</Gender>
<NetOrderAmount>6</NetOrderAmount>
<TopCategoriesPurchased>sample string 8</TopCategoriesPurchased>
<TotalCount>11</TotalCount>
<TotalCustomers>9</TotalCustomers>
<TotalOrders>3</TotalOrders>
<TotalSales>5</TotalSales>
</DemographicPurchaseAnalysisReport>
<DemographicPurchaseAnalysisReport>
<ActiveOrders>4</ActiveOrders>
<AgeGroup>sample string 1</AgeGroup>
<AvgOrderValue>7</AvgOrderValue>
<ConversionRate>10</ConversionRate>
<Gender>sample string 2</Gender>
<NetOrderAmount>6</NetOrderAmount>
<TopCategoriesPurchased>sample string 8</TopCategoriesPurchased>
<TotalCount>11</TotalCount>
<TotalCustomers>9</TotalCustomers>
<TotalOrders>3</TotalOrders>
<TotalSales>5</TotalSales>
</DemographicPurchaseAnalysisReport>
</ArrayOfDemographicPurchaseAnalysisReport>
