GET api/SareeBanner
Gets all Saree Banners Details.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of Saree banners and it's Details
Collection of SilkSareeBannerName | Description | Type | Additional information |
---|---|---|---|
id |
Gets or sets the ID of the Saree Banner. |
integer |
None. |
bannerName |
Gets or sets the name of the Saree Banner. |
string |
None. |
imageURL |
Gets or sets the image URL of the banner |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "id": 1, "bannerName": "sample string 2", "imageURL": "sample string 3" }, { "id": 1, "bannerName": "sample string 2", "imageURL": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfSilkSareeBanner xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OTJServices.Models"> <SilkSareeBanner> <bannerName>sample string 2</bannerName> <id>1</id> <imageURL>sample string 3</imageURL> </SilkSareeBanner> <SilkSareeBanner> <bannerName>sample string 2</bannerName> <id>1</id> <imageURL>sample string 3</imageURL> </SilkSareeBanner> </ArrayOfSilkSareeBanner>