POST Gallery/Gallery

GetGalleries with same parentID

Request Information

URI Parameters

None.

Body Parameters

GetGalleryRequest
NameDescriptionTypeAdditional information
ID

integer

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Lang": "sample string 2",
  "StoreID": 3
}

application/xml, text/xml

Sample:
<GetGalleryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Gallery">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 2</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">3</StoreID>
  <ID>1</ID>
</GetGalleryRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Gallery
NameDescriptionTypeAdditional information
ID

integer

None.

Created

date

None.

Modified

date

None.

Disabled

date

None.

Name

string

None.

Value

The value related to this Gallery. E.g. color black has value : 0x00000

string

None.

SortOrder

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Created": "2025-12-06T09:15:27.5176509+01:00",
  "Modified": "2025-12-06T09:15:27.5176509+01:00",
  "Disabled": "2025-12-06T09:15:27.5176509+01:00",
  "Name": "sample string 4",
  "Value": "sample string 5",
  "SortOrder": 6
}

application/xml, text/xml

Sample:
<Gallery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Gallery">
  <Created>2025-12-06T09:15:27.5176509+01:00</Created>
  <Disabled>2025-12-06T09:15:27.5176509+01:00</Disabled>
  <ID>1</ID>
  <Modified>2025-12-06T09:15:27.5176509+01:00</Modified>
  <Name>sample string 4</Name>
  <SortOrder>6</SortOrder>
  <Value>sample string 5</Value>
</Gallery>