GET api/Gallery

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Gallery
NameDescriptionTypeAdditional information
Id

integer

None.

ImagePath

string

None.

Flag

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "ImagePath": "sample string 2",
    "Flag": 1
  },
  {
    "Id": 1,
    "ImagePath": "sample string 2",
    "Flag": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfGallery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileAppApi.Models">
  <Gallery>
    <Flag>1</Flag>
    <Id>1</Id>
    <ImagePath>sample string 2</ImagePath>
  </Gallery>
  <Gallery>
    <Flag>1</Flag>
    <Id>1</Id>
    <ImagePath>sample string 2</ImagePath>
  </Gallery>
</ArrayOfGallery>