POST api/Gallery/GetGalleries
Request Information
URI Parameters
None.
Body Parameters
GetGalleryRequestNone.
Request Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<GetGalleryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GoldenSea.Entities.Gallery" />
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetGalleryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Galleries | Collection of Gallery |
None. |
Response Formats
application/json, text/json
Sample:
{
"Galleries": [
{
"Id": 1,
"GalleryUrl": "sample string 2",
"IsActive": true,
"path": "sample string 3"
},
{
"Id": 1,
"GalleryUrl": "sample string 2",
"IsActive": true,
"path": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<GetGalleryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GoldenSea.Entities.Gallery">
<Galleries>
<Gallery>
<GalleryUrl>sample string 2</GalleryUrl>
<Id>1</Id>
<IsActive>true</IsActive>
<path>sample string 3</path>
</Gallery>
<Gallery>
<GalleryUrl>sample string 2</GalleryUrl>
<Id>1</Id>
<IsActive>true</IsActive>
<path>sample string 3</path>
</Gallery>
</Galleries>
</GetGalleryResponse>