POST Marketing/ProductReviews

ProductReviews where a Product is bound as a principal or child

Request Information

URI Parameters

None.

Body Parameters

GetProductRequest
NameDescriptionTypeAdditional information
ID

integer

None.

Reference

string

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<GetProductRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Catalog">
  <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>
  <Reference>sample string 1</Reference>
</GetProductRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Review
NameDescriptionTypeAdditional information
ID

integer

None.

Created

date

None.

Modified

date

None.

StatusID

integer

None.

CustomerID

string

Required

String length: inclusive between 0 and 128

ProductID

integer

None.

Rating

integer

Range: inclusive between 1 and 5

Text

string

Required

String length: inclusive between 0 and 5000

LanguageID

The language of the review

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Created": "2025-12-06T05:42:05.6282365+01:00",
    "Modified": "2025-12-06T05:42:05.6282365+01:00",
    "StatusID": 4,
    "CustomerID": "sample string 5",
    "ProductID": 6,
    "Rating": 7,
    "Text": "sample string 8",
    "LanguageID": 9
  },
  {
    "ID": 1,
    "Created": "2025-12-06T05:42:05.6282365+01:00",
    "Modified": "2025-12-06T05:42:05.6282365+01:00",
    "StatusID": 4,
    "CustomerID": "sample string 5",
    "ProductID": 6,
    "Rating": 7,
    "Text": "sample string 8",
    "LanguageID": 9
  }
]

application/xml, text/xml

Sample:
<ArrayOfReview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Marketing">
  <Review>
    <Created>2025-12-06T05:42:05.6282365+01:00</Created>
    <CustomerID>sample string 5</CustomerID>
    <ID>1</ID>
    <LanguageID>9</LanguageID>
    <Modified>2025-12-06T05:42:05.6282365+01:00</Modified>
    <ProductID>6</ProductID>
    <Rating>7</Rating>
    <StatusID>4</StatusID>
    <Text>sample string 8</Text>
  </Review>
  <Review>
    <Created>2025-12-06T05:42:05.6282365+01:00</Created>
    <CustomerID>sample string 5</CustomerID>
    <ID>1</ID>
    <LanguageID>9</LanguageID>
    <Modified>2025-12-06T05:42:05.6282365+01:00</Modified>
    <ProductID>6</ProductID>
    <Rating>7</Rating>
    <StatusID>4</StatusID>
    <Text>sample string 8</Text>
  </Review>
</ArrayOfReview>