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 ShoppingCartItemDtoName | 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": "24b148b4-1153-4f90-9b96-303dde335d37", "ProductId": "c72b9868-ad25-4224-89db-c065343f74de", "ProductType": "sample string 3", "WebProductName": "sample string 4", "Quantity": 1, "Price": 5.0 }, { "WebProductId": "24b148b4-1153-4f90-9b96-303dde335d37", "ProductId": "c72b9868-ad25-4224-89db-c065343f74de", "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>c72b9868-ad25-4224-89db-c065343f74de</ProductId> <ProductType>sample string 3</ProductType> <Quantity>1</Quantity> <WebProductId>24b148b4-1153-4f90-9b96-303dde335d37</WebProductId> <WebProductName>sample string 4</WebProductName> </ShoppingCartItemDto> <ShoppingCartItemDto> <Price>5</Price> <ProductId>c72b9868-ad25-4224-89db-c065343f74de</ProductId> <ProductType>sample string 3</ProductType> <Quantity>1</Quantity> <WebProductId>24b148b4-1153-4f90-9b96-303dde335d37</WebProductId> <WebProductName>sample string 4</WebProductName> </ShoppingCartItemDto> </ArrayOfShoppingCartItemDto>