GET api/Banner/GetBannerList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of BannerDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

BannerType

globally unique identifier

None.

BannerTypeName

string

None.

BannerImage

string

None.

BannerUrl

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "3d6230a3-744e-4081-b81e-4b16ea5a4f75",
    "BannerType": "70283ca0-25c6-41b1-b76a-1027d702094e",
    "BannerTypeName": "sample string 3",
    "BannerImage": "sample string 4",
    "BannerUrl": "sample string 5"
  },
  {
    "Id": "3d6230a3-744e-4081-b81e-4b16ea5a4f75",
    "BannerType": "70283ca0-25c6-41b1-b76a-1027d702094e",
    "BannerTypeName": "sample string 3",
    "BannerImage": "sample string 4",
    "BannerUrl": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBannerDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.BannerModule.Model">
  <BannerDto>
    <BannerImage>sample string 4</BannerImage>
    <BannerType>70283ca0-25c6-41b1-b76a-1027d702094e</BannerType>
    <BannerTypeName>sample string 3</BannerTypeName>
    <BannerUrl>sample string 5</BannerUrl>
    <Id>3d6230a3-744e-4081-b81e-4b16ea5a4f75</Id>
  </BannerDto>
  <BannerDto>
    <BannerImage>sample string 4</BannerImage>
    <BannerType>70283ca0-25c6-41b1-b76a-1027d702094e</BannerType>
    <BannerTypeName>sample string 3</BannerTypeName>
    <BannerUrl>sample string 5</BannerUrl>
    <Id>3d6230a3-744e-4081-b81e-4b16ea5a4f75</Id>
  </BannerDto>
</ArrayOfBannerDto>