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.

Request Formats

application/json, text/json

Sample:
{
  "CartItems": [
    {
      "WebProductId": "b9001f50-e35f-4904-b749-79c0c41fe95f",
      "WebProductName": "sample string 2",
      "ParentWebProductId": "ba2aa117-ce28-4607-a8fa-9e43d1719cff",
      "Quantity": 4
    },
    {
      "WebProductId": "b9001f50-e35f-4904-b749-79c0c41fe95f",
      "WebProductName": "sample string 2",
      "ParentWebProductId": "ba2aa117-ce28-4607-a8fa-9e43d1719cff",
      "Quantity": 4
    }
  ]
}

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>ba2aa117-ce28-4607-a8fa-9e43d1719cff</ParentWebProductId>
      <Quantity>4</Quantity>
      <WebProductId>b9001f50-e35f-4904-b749-79c0c41fe95f</WebProductId>
      <WebProductName>sample string 2</WebProductName>
    </CartItem>
    <CartItem>
      <ParentWebProductId>ba2aa117-ce28-4607-a8fa-9e43d1719cff</ParentWebProductId>
      <Quantity>4</Quantity>
      <WebProductId>b9001f50-e35f-4904-b749-79c0c41fe95f</WebProductId>
      <WebProductName>sample string 2</WebProductName>
    </CartItem>
  </CartItems>
</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.