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": "34b75f03-0cd4-44e3-a366-3dd03d9e1580",
"ProductId": "a80b3b51-3695-44af-a4bf-fbba6e898654",
"ProductType": "sample string 3",
"WebProductName": "sample string 4",
"Quantity": 1,
"Price": 5.0
},
{
"WebProductId": "34b75f03-0cd4-44e3-a366-3dd03d9e1580",
"ProductId": "a80b3b51-3695-44af-a4bf-fbba6e898654",
"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>a80b3b51-3695-44af-a4bf-fbba6e898654</ProductId>
<ProductType>sample string 3</ProductType>
<Quantity>1</Quantity>
<WebProductId>34b75f03-0cd4-44e3-a366-3dd03d9e1580</WebProductId>
<WebProductName>sample string 4</WebProductName>
</ShoppingCartItemDto>
<ShoppingCartItemDto>
<Price>5</Price>
<ProductId>a80b3b51-3695-44af-a4bf-fbba6e898654</ProductId>
<ProductType>sample string 3</ProductType>
<Quantity>1</Quantity>
<WebProductId>34b75f03-0cd4-44e3-a366-3dd03d9e1580</WebProductId>
<WebProductName>sample string 4</WebProductName>
</ShoppingCartItemDto>
</ArrayOfShoppingCartItemDto>