GET api/BookBanners

Gets all Books Banner.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of Books Banners

Collection of BookBanner
NameDescriptionTypeAdditional information
bookID

Gets or sets the ID of the book banner.

integer

None.

bookName

Gets or sets the name of the book banner.

string

None.

bookDescription

Gets or sets the description of the book banner.

string

None.

imageURL

Gets or sets the URL of the book banner image.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "bookID": 1,
    "bookName": "sample string 2",
    "bookDescription": "sample string 3",
    "imageURL": "sample string 4"
  },
  {
    "bookID": 1,
    "bookName": "sample string 2",
    "bookDescription": "sample string 3",
    "imageURL": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBookBanner xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OTJServices.Models">
  <BookBanner>
    <bookDescription>sample string 3</bookDescription>
    <bookID>1</bookID>
    <bookName>sample string 2</bookName>
    <imageURL>sample string 4</imageURL>
  </BookBanner>
  <BookBanner>
    <bookDescription>sample string 3</bookDescription>
    <bookID>1</bookID>
    <bookName>sample string 2</bookName>
    <imageURL>sample string 4</imageURL>
  </BookBanner>
</ArrayOfBookBanner>