GET
api/v1/crm-wishlist-report-data?customerId={customerId}&clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | string |
Required |
|
| clientId | integer |
Required |
Response Information
Description:
Return type: Collection of WishListReport
Response Formats
application/json, text/json
[
{
"CategoryName": "sample string 1",
"NoofProduct": 2,
"MonthName": "sample string 3",
"HistoryCount": 4
},
{
"CategoryName": "sample string 1",
"NoofProduct": 2,
"MonthName": "sample string 3",
"HistoryCount": 4
}
]
text/html
[{"CategoryName":"sample string 1","NoofProduct":2,"MonthName":"sample string 3","HistoryCount":4},{"CategoryName":"sample string 1","NoofProduct":2,"MonthName":"sample string 3","HistoryCount":4}]
application/xml, text/xml
<ArrayOfWishListReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.CRM">
<WishListReport>
<CategoryName>sample string 1</CategoryName>
<HistoryCount>4</HistoryCount>
<MonthName>sample string 3</MonthName>
<NoofProduct>2</NoofProduct>
</WishListReport>
<WishListReport>
<CategoryName>sample string 1</CategoryName>
<HistoryCount>4</HistoryCount>
<MonthName>sample string 3</MonthName>
<NoofProduct>2</NoofProduct>
</WishListReport>
</ArrayOfWishListReport>
