GET api/Ecommerce/FetchFreshProduct
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
FetchFlashView| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Message | string |
None. |
|
| ObjList | Collection of FetchFlash |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Message": "sample string 2",
"ObjList": [
{
"ProductId": 1,
"ProductName": "sample string 2",
"ProductImageUrl": "sample string 3",
"CategoryName": "sample string 4",
"DiscountInAmount": 5.0,
"MRP": 6.0,
"CategoryId": 7,
"DiscountPrice": 8.0,
"POSId": 9,
"RedeemPoint": 10.0,
"VendorId": 11,
"VendorName": "sample string 12",
"BusinessValue": 13.0
},
{
"ProductId": 1,
"ProductName": "sample string 2",
"ProductImageUrl": "sample string 3",
"CategoryName": "sample string 4",
"DiscountInAmount": 5.0,
"MRP": 6.0,
"CategoryId": 7,
"DiscountPrice": 8.0,
"POSId": 9,
"RedeemPoint": 10.0,
"VendorId": 11,
"VendorName": "sample string 12",
"BusinessValue": 13.0
}
]
}
application/xml, text/xml
Sample:
<FetchFlashView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AirTripAPIs.Controllers">
<Message>sample string 2</Message>
<ObjList>
<FetchFlash>
<BusinessValue>13</BusinessValue>
<CategoryId>7</CategoryId>
<CategoryName>sample string 4</CategoryName>
<DiscountInAmount>5</DiscountInAmount>
<DiscountPrice>8</DiscountPrice>
<MRP>6</MRP>
<POSId>9</POSId>
<ProductId>1</ProductId>
<ProductImageUrl>sample string 3</ProductImageUrl>
<ProductName>sample string 2</ProductName>
<RedeemPoint>10</RedeemPoint>
<VendorId>11</VendorId>
<VendorName>sample string 12</VendorName>
</FetchFlash>
<FetchFlash>
<BusinessValue>13</BusinessValue>
<CategoryId>7</CategoryId>
<CategoryName>sample string 4</CategoryName>
<DiscountInAmount>5</DiscountInAmount>
<DiscountPrice>8</DiscountPrice>
<MRP>6</MRP>
<POSId>9</POSId>
<ProductId>1</ProductId>
<ProductImageUrl>sample string 3</ProductImageUrl>
<ProductName>sample string 2</ProductName>
<RedeemPoint>10</RedeemPoint>
<VendorId>11</VendorId>
<VendorName>sample string 12</VendorName>
</FetchFlash>
</ObjList>
<Status>true</Status>
</FetchFlashView>