GET sccm/products/{categoryId}/{portalId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
categoryId

string

Required

portalId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ProductSpecs
NameDescriptionTypeAdditional information
WebProductName

string

None.

WebProductId

globally unique identifier

None.

ProductNumber

string

None.

Description

string

None.

ImageUrl

string

None.

Price

decimal number

None.

DisplayOrder

decimal number

None.

ChargeTaxes

boolean

None.

ChargeShipping

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "WebProductName": "sample string 1",
    "WebProductId": "de8dd7cc-0034-454b-b863-21e77f2d08a6",
    "ProductNumber": "sample string 2",
    "Description": "sample string 3",
    "ImageUrl": "sample string 4",
    "Price": 5.0,
    "DisplayOrder": 6.0,
    "ChargeTaxes": true,
    "ChargeShipping": true
  },
  {
    "WebProductName": "sample string 1",
    "WebProductId": "de8dd7cc-0034-454b-b863-21e77f2d08a6",
    "ProductNumber": "sample string 2",
    "Description": "sample string 3",
    "ImageUrl": "sample string 4",
    "Price": 5.0,
    "DisplayOrder": 6.0,
    "ChargeTaxes": true,
    "ChargeShipping": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfProductSpecs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AltaiStandard.Web.ClientIntegrationService.Helpers">
  <ProductSpecs>
    <ChargeShipping>true</ChargeShipping>
    <ChargeTaxes>true</ChargeTaxes>
    <Description>sample string 3</Description>
    <DisplayOrder>6</DisplayOrder>
    <ImageUrl>sample string 4</ImageUrl>
    <Price>5</Price>
    <ProductNumber>sample string 2</ProductNumber>
    <WebProductId>de8dd7cc-0034-454b-b863-21e77f2d08a6</WebProductId>
    <WebProductName>sample string 1</WebProductName>
  </ProductSpecs>
  <ProductSpecs>
    <ChargeShipping>true</ChargeShipping>
    <ChargeTaxes>true</ChargeTaxes>
    <Description>sample string 3</Description>
    <DisplayOrder>6</DisplayOrder>
    <ImageUrl>sample string 4</ImageUrl>
    <Price>5</Price>
    <ProductNumber>sample string 2</ProductNumber>
    <WebProductId>de8dd7cc-0034-454b-b863-21e77f2d08a6</WebProductId>
    <WebProductName>sample string 1</WebProductName>
  </ProductSpecs>
</ArrayOfProductSpecs>