GET sccm/products/{categoryId}/{portalId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| categoryId | string |
Required |
|
| portalId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProductSpecs| Name | Description | Type | Additional 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": "bb75d51a-cd33-47fe-b4ed-a29b0a624c0e",
"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": "bb75d51a-cd33-47fe-b4ed-a29b0a624c0e",
"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>bb75d51a-cd33-47fe-b4ed-a29b0a624c0e</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>bb75d51a-cd33-47fe-b4ed-a29b0a624c0e</WebProductId>
<WebProductName>sample string 1</WebProductName>
</ProductSpecs>
</ArrayOfProductSpecs>