POST api/Ecommerce/ProductSliders
Request Information
URI Parameters
None.
Body Parameters
TblHomePageSliderReq| Name | Description | Type | Additional information |
|---|---|---|---|
| MainCategoryId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"MainCategoryId": 1
}
application/xml, text/xml
Sample:
<TblHomePageSliderReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AirTripAPIs.Controllers"> <MainCategoryId>1</MainCategoryId> </TblHomePageSliderReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TblHomePageSliderRes| Name | Description | Type | Additional information |
|---|---|---|---|
| tblHomePageSlider | Collection of tbl_HomePageSliderProduct |
None. |
|
| Status | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"tblHomePageSlider": [
{
"SubCategoryID": 1,
"SubCategoryName": "sample string 2",
"Price": 3.0,
"Content1": "sample string 4",
"Content2": "sample string 5",
"Product": "sample string 6",
"ProductImageUrl": "sample string 7",
"ProductImageName": "sample string 8"
},
{
"SubCategoryID": 1,
"SubCategoryName": "sample string 2",
"Price": 3.0,
"Content1": "sample string 4",
"Content2": "sample string 5",
"Product": "sample string 6",
"ProductImageUrl": "sample string 7",
"ProductImageName": "sample string 8"
}
],
"Status": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<TblHomePageSliderRes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AirTripAPIs.Controllers">
<Message>sample string 2</Message>
<Status>true</Status>
<tblHomePageSlider>
<tbl_HomePageSliderProduct>
<Content1>sample string 4</Content1>
<Content2>sample string 5</Content2>
<Price>3</Price>
<Product>sample string 6</Product>
<ProductImageName>sample string 8</ProductImageName>
<ProductImageUrl>sample string 7</ProductImageUrl>
<SubCategoryID>1</SubCategoryID>
<SubCategoryName>sample string 2</SubCategoryName>
</tbl_HomePageSliderProduct>
<tbl_HomePageSliderProduct>
<Content1>sample string 4</Content1>
<Content2>sample string 5</Content2>
<Price>3</Price>
<Product>sample string 6</Product>
<ProductImageName>sample string 8</ProductImageName>
<ProductImageUrl>sample string 7</ProductImageUrl>
<SubCategoryID>1</SubCategoryID>
<SubCategoryName>sample string 2</SubCategoryName>
</tbl_HomePageSliderProduct>
</tblHomePageSlider>
</TblHomePageSliderRes>