GET sccm/shoppingCartItems/{portalId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| portalId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ShoppingCartItemDto| Name | Description | Type | Additional information |
|---|---|---|---|
| WebProductId | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| ProductType | string |
None. |
|
| WebProductName | string |
None. |
|
| Quantity | integer |
None. |
|
| Price | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"WebProductId": "0a699f0d-b3ea-4999-b714-298329171740",
"ProductId": "6118e364-f9db-4e89-940a-95aae9e83cd7",
"ProductType": "sample string 3",
"WebProductName": "sample string 4",
"Quantity": 1,
"Price": 5.0
},
{
"WebProductId": "0a699f0d-b3ea-4999-b714-298329171740",
"ProductId": "6118e364-f9db-4e89-940a-95aae9e83cd7",
"ProductType": "sample string 3",
"WebProductName": "sample string 4",
"Quantity": 1,
"Price": 5.0
}
]
application/xml, text/xml
Sample:
<ArrayOfShoppingCartItemDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AltaiStandard.Web.ClientIntegrationService.Helpers">
<ShoppingCartItemDto>
<Price>5</Price>
<ProductId>6118e364-f9db-4e89-940a-95aae9e83cd7</ProductId>
<ProductType>sample string 3</ProductType>
<Quantity>1</Quantity>
<WebProductId>0a699f0d-b3ea-4999-b714-298329171740</WebProductId>
<WebProductName>sample string 4</WebProductName>
</ShoppingCartItemDto>
<ShoppingCartItemDto>
<Price>5</Price>
<ProductId>6118e364-f9db-4e89-940a-95aae9e83cd7</ProductId>
<ProductType>sample string 3</ProductType>
<Quantity>1</Quantity>
<WebProductId>0a699f0d-b3ea-4999-b714-298329171740</WebProductId>
<WebProductName>sample string 4</WebProductName>
</ShoppingCartItemDto>
</ArrayOfShoppingCartItemDto>