POST api/shoppingcart/add/items?shoppingCartId={shoppingCartId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
shoppingCartId

globally unique identifier

Required

Body Parameters

CreateCartItems
NameDescriptionTypeAdditional information
CartItems

Collection of CartItem

None.

accountId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "CartItems": [
    {
      "WebProductId": "82257b3e-930d-425d-bdad-16a4ee18293e",
      "WebProductName": "sample string 2",
      "ParentWebProductId": "ec62210b-1a23-4799-89a1-f910f1ea3aa4",
      "Quantity": 4,
      "Price": 5.0
    },
    {
      "WebProductId": "82257b3e-930d-425d-bdad-16a4ee18293e",
      "WebProductName": "sample string 2",
      "ParentWebProductId": "ec62210b-1a23-4799-89a1-f910f1ea3aa4",
      "Quantity": 4,
      "Price": 5.0
    }
  ],
  "accountId": "f06591f7-faf7-40dc-ac19-c3590b61e4d0"
}

application/xml, text/xml

Sample:
<CreateCartItems xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models">
  <CartItems>
    <CartItem>
      <ParentWebProductId>ec62210b-1a23-4799-89a1-f910f1ea3aa4</ParentWebProductId>
      <Price>5</Price>
      <Quantity>4</Quantity>
      <WebProductId>82257b3e-930d-425d-bdad-16a4ee18293e</WebProductId>
      <WebProductName>sample string 2</WebProductName>
    </CartItem>
    <CartItem>
      <ParentWebProductId>ec62210b-1a23-4799-89a1-f910f1ea3aa4</ParentWebProductId>
      <Price>5</Price>
      <Quantity>4</Quantity>
      <WebProductId>82257b3e-930d-425d-bdad-16a4ee18293e</WebProductId>
      <WebProductName>sample string 2</WebProductName>
    </CartItem>
  </CartItems>
  <accountId>f06591f7-faf7-40dc-ac19-c3590b61e4d0</accountId>
</CreateCartItems>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.