GET api/Ecommerce/GetBannerImages

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

SliderResponseView
NameDescriptionTypeAdditional information
ObjList

Collection of SliderResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "ObjList": [
    {
      "SubCategoryID": 1,
      "SubCategoryName": "sample string 2",
      "SliderID": 3,
      "SliderImageUrl": "sample string 4"
    },
    {
      "SubCategoryID": 1,
      "SubCategoryName": "sample string 2",
      "SliderID": 3,
      "SliderImageUrl": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<SliderResponseView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AirTripAPIs.Controllers">
  <ObjList>
    <SliderResponse>
      <SliderID>3</SliderID>
      <SliderImageUrl>sample string 4</SliderImageUrl>
      <SubCategoryID>1</SubCategoryID>
      <SubCategoryName>sample string 2</SubCategoryName>
    </SliderResponse>
    <SliderResponse>
      <SliderID>3</SliderID>
      <SliderImageUrl>sample string 4</SliderImageUrl>
      <SubCategoryID>1</SubCategoryID>
      <SubCategoryName>sample string 2</SubCategoryName>
    </SliderResponse>
  </ObjList>
</SliderResponseView>