GET directory/{galleryType}/get-gallery

Request Information

URI Parameters

NameDescriptionTypeAdditional information
galleryType

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GalleryDto
NameDescriptionTypeAdditional information
Id

integer

None.

CategoryID

integer

None.

CategoryText

string

None.

Url

string

None.

Description

string

None.

GalleryType

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "CategoryID": 2,
    "CategoryText": "sample string 3",
    "Url": "sample string 4",
    "Description": "sample string 5",
    "GalleryType": 6
  },
  {
    "Id": 1,
    "CategoryID": 2,
    "CategoryText": "sample string 3",
    "Url": "sample string 4",
    "Description": "sample string 5",
    "GalleryType": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfGalleryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DrAhmedElMasryApi.Dto">
  <GalleryDto>
    <CategoryID>2</CategoryID>
    <CategoryText>sample string 3</CategoryText>
    <Description>sample string 5</Description>
    <GalleryType>6</GalleryType>
    <Id>1</Id>
    <Url>sample string 4</Url>
  </GalleryDto>
  <GalleryDto>
    <CategoryID>2</CategoryID>
    <CategoryText>sample string 3</CategoryText>
    <Description>sample string 5</Description>
    <GalleryType>6</GalleryType>
    <Id>1</Id>
    <Url>sample string 4</Url>
  </GalleryDto>
</ArrayOfGalleryDto>