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": "124f3fab-3b6f-4f13-9a10-4a82db3fed43",
      "WebProductName": "sample string 2",
      "ParentWebProductId": "cafc5480-257c-4865-ade1-8c9166fc1be4",
      "Quantity": 4,
      "Price": 5.0
    },
    {
      "WebProductId": "124f3fab-3b6f-4f13-9a10-4a82db3fed43",
      "WebProductName": "sample string 2",
      "ParentWebProductId": "cafc5480-257c-4865-ade1-8c9166fc1be4",
      "Quantity": 4,
      "Price": 5.0
    }
  ],
  "accountId": "ebafe16d-0e0a-44e0-bf10-c7214f624c9a"
}

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>cafc5480-257c-4865-ade1-8c9166fc1be4</ParentWebProductId>
      <Price>5</Price>
      <Quantity>4</Quantity>
      <WebProductId>124f3fab-3b6f-4f13-9a10-4a82db3fed43</WebProductId>
      <WebProductName>sample string 2</WebProductName>
    </CartItem>
    <CartItem>
      <ParentWebProductId>cafc5480-257c-4865-ade1-8c9166fc1be4</ParentWebProductId>
      <Price>5</Price>
      <Quantity>4</Quantity>
      <WebProductId>124f3fab-3b6f-4f13-9a10-4a82db3fed43</WebProductId>
      <WebProductName>sample string 2</WebProductName>
    </CartItem>
  </CartItems>
  <accountId>ebafe16d-0e0a-44e0-bf10-c7214f624c9a</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.