POST api/carts/current/cartlines
ADINA-8116:Adds a product item to shopping cart
Request Information
URI Parameters
None.
Body Parameters
CartlinePostRequestEntityName | Description | Type | Additional information |
---|---|---|---|
productId | globally unique identifier |
None. |
|
qtyOrdered | decimal number |
None. |
|
unitOfMeasure | string |
None. |
|
pricing | Pricing |
None. |
Request Formats
application/json, text/json
Sample:
{ "productId": "d516f277-e1eb-4e27-a834-924a28285e14", "qtyOrdered": 2.0, "unitOfMeasure": "sample string 3", "pricing": { "regularPrice": 1.1, "regularPriceDisplay": "sample string 2", "extendedRegularPrice": 3.1, "extendedRegularPriceDisplay": "sample string 4", "actualPrice": 5.1, "actualPriceDisplay": "sample string 6", "extendedActualPrice": 7.1, "extendedActualPriceDisplay": "sample string 8", "unitCost": 9.1, "unitCostDisplay": "sample string 10", "isOnSale": true, "regularBreakPrices": { "breakQty": 1, "breakPrice": 2, "breakPriceDisplay": "sample string 3", "savingsMessage": "sample string 4" }, "actualBreakPrices": { "breakQty": 1, "breakPrice": 2, "breakPriceDisplay": "sample string 3", "savingsMessage": "sample string 4" }, "additionalResults": { "saleEndDate": "sample string 1", "saleExpiryDays": "sample string 2" }, "requiresRealTimePrice": true, "unitListPrice": 13.1, "unitListPriceDisplay": "sample string 14", "extendedUnitListPrice": 15.1, "extendedUnitListPriceDisplay": "sample string 16", "unitRegularPrice": 17.1, "unitRegularPriceDisplay": "sample string 18", "extendedUnitRegularPrice": 19.1, "extendedUnitRegularPriceDisplay": "sample string 20", "unitNetPrice": 21.1, "unitNetPriceDisplay": "sample string 22", "extendedUnitNetPrice": 23.1, "extendedUnitNetPriceDisplay": "sample string 24" } }
application/xml, text/xml
Sample:
<CartlinePostRequestEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Adi.BusinessEntities.ShoppingCart"> <pricing xmlns:d2p1="http://schemas.datacontract.org/2004/07/Adi.BusinessEntities"> <d2p1:actualBreakPrices> <d2p1:breakPrice>2</d2p1:breakPrice> <d2p1:breakPriceDisplay>sample string 3</d2p1:breakPriceDisplay> <d2p1:breakQty>1</d2p1:breakQty> <d2p1:savingsMessage>sample string 4</d2p1:savingsMessage> </d2p1:actualBreakPrices> <d2p1:actualPrice>5.1</d2p1:actualPrice> <d2p1:actualPriceDisplay>sample string 6</d2p1:actualPriceDisplay> <d2p1:additionalResults> <d2p1:saleEndDate>sample string 1</d2p1:saleEndDate> <d2p1:saleExpiryDays>sample string 2</d2p1:saleExpiryDays> </d2p1:additionalResults> <d2p1:extendedActualPrice>7.1</d2p1:extendedActualPrice> <d2p1:extendedActualPriceDisplay>sample string 8</d2p1:extendedActualPriceDisplay> <d2p1:extendedRegularPrice>3.1</d2p1:extendedRegularPrice> <d2p1:extendedRegularPriceDisplay>sample string 4</d2p1:extendedRegularPriceDisplay> <d2p1:extendedUnitListPrice>15.1</d2p1:extendedUnitListPrice> <d2p1:extendedUnitListPriceDisplay>sample string 16</d2p1:extendedUnitListPriceDisplay> <d2p1:extendedUnitNetPrice>23.1</d2p1:extendedUnitNetPrice> <d2p1:extendedUnitNetPriceDisplay>sample string 24</d2p1:extendedUnitNetPriceDisplay> <d2p1:extendedUnitRegularPrice>19.1</d2p1:extendedUnitRegularPrice> <d2p1:extendedUnitRegularPriceDisplay>sample string 20</d2p1:extendedUnitRegularPriceDisplay> <d2p1:isOnSale>true</d2p1:isOnSale> <d2p1:regularBreakPrices> <d2p1:breakPrice>2</d2p1:breakPrice> <d2p1:breakPriceDisplay>sample string 3</d2p1:breakPriceDisplay> <d2p1:breakQty>1</d2p1:breakQty> <d2p1:savingsMessage>sample string 4</d2p1:savingsMessage> </d2p1:regularBreakPrices> <d2p1:regularPrice>1.1</d2p1:regularPrice> <d2p1:regularPriceDisplay>sample string 2</d2p1:regularPriceDisplay> <d2p1:requiresRealTimePrice>true</d2p1:requiresRealTimePrice> <d2p1:unitCost>9.1</d2p1:unitCost> <d2p1:unitCostDisplay>sample string 10</d2p1:unitCostDisplay> <d2p1:unitListPrice>13.1</d2p1:unitListPrice> <d2p1:unitListPriceDisplay>sample string 14</d2p1:unitListPriceDisplay> <d2p1:unitNetPrice>21.1</d2p1:unitNetPrice> <d2p1:unitNetPriceDisplay>sample string 22</d2p1:unitNetPriceDisplay> <d2p1:unitRegularPrice>17.1</d2p1:unitRegularPrice> <d2p1:unitRegularPriceDisplay>sample string 18</d2p1:unitRegularPriceDisplay> </pricing> <productId>d516f277-e1eb-4e27-a834-924a28285e14</productId> <qtyOrdered>2</qtyOrdered> <unitOfMeasure>sample string 3</unitOfMeasure> </CartlinePostRequestEntity>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
CustomActionResultOfCartlinePostResponseEntityName | Description | Type | Additional information |
---|---|---|---|
StatusCode | HttpStatusCode |
None. |
|
_data | CartlinePostResponseEntity |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.