POST Gallery/Galleries
Request Information
URI Parameters
None.
Body Parameters
GetGalleriesRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Filter | GalleryFilter |
None. |
|
| Range | AdminFilterRange |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GalleriesView| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| Galleries | Collection of Gallery |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"Galleries": [
{
"ID": 1,
"Created": "2025-12-06T09:15:28.781115+01:00",
"Modified": "2025-12-06T09:15:28.781115+01:00",
"Disabled": "2025-12-06T09:15:28.781115+01:00",
"Name": "sample string 4",
"Value": "sample string 5",
"SortOrder": 6
},
{
"ID": 1,
"Created": "2025-12-06T09:15:28.781115+01:00",
"Modified": "2025-12-06T09:15:28.781115+01:00",
"Disabled": "2025-12-06T09:15:28.781115+01:00",
"Name": "sample string 4",
"Value": "sample string 5",
"SortOrder": 6
}
]
}
application/xml, text/xml
Sample:
<GalleriesView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Gallery">
<Galleries>
<Gallery>
<Created>2025-12-06T09:15:28.781115+01:00</Created>
<Disabled>2025-12-06T09:15:28.781115+01:00</Disabled>
<ID>1</ID>
<Modified>2025-12-06T09:15:28.781115+01:00</Modified>
<Name>sample string 4</Name>
<SortOrder>6</SortOrder>
<Value>sample string 5</Value>
</Gallery>
<Gallery>
<Created>2025-12-06T09:15:28.781115+01:00</Created>
<Disabled>2025-12-06T09:15:28.781115+01:00</Disabled>
<ID>1</ID>
<Modified>2025-12-06T09:15:28.781115+01:00</Modified>
<Name>sample string 4</Name>
<SortOrder>6</SortOrder>
<Value>sample string 5</Value>
</Gallery>
</Galleries>
<TotalCount>1</TotalCount>
</GalleriesView>