GET v1/nestedgalleries?siteId={siteId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
siteId | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
NestedGalleriesResourceName | Description | Type | Additional information |
---|---|---|---|
NestedGalleries | Collection of NestedGalleryDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "nestedGalleries": [ { "id": 1, "publicSiteId": 2, "parentGallery": 3, "innerGallery": 4 }, { "id": 1, "publicSiteId": 2, "parentGallery": 3, "innerGallery": 4 } ] }
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs"> <NestedGalleries> <NestedGallery> <Id>1</Id> <InnerGallery>4</InnerGallery> <ParentGallery>3</ParentGallery> <PublicSiteId>2</PublicSiteId> </NestedGallery> <NestedGallery> <Id>1</Id> <InnerGallery>4</InnerGallery> <ParentGallery>3</ParentGallery> <PublicSiteId>2</PublicSiteId> </NestedGallery> </NestedGalleries> </Resources>