Skip to main content

Add item to a shopping cart

POST 

https://api-qa.reachu.io/api/cart/:id/item/add

Add an item to a shopping cart using its ID.

Request

Path Parameters

    id stringrequired

    The ID of the cart to which the item will be added

Body

required

    line_items

    object[]

  • Array [

  • product_id number

    ID of the product

    variant_id number

    ID of the variant (optional)

    quantity number

    price_data

    object

    unit_price number
    tax number
    currency string
    compare_at number
    shipping_id string
  • ]

Responses

Successful addition of item to the cart

Schema

    any

curl -L -X POST 'https://api-qa.reachu.io/api/cart/:id/item/add' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"line_items": [
{
"product_id": 1230168,
"variant_id": 0,
"quantity": 0,
"price_data": {
"unit_price": 0,
"tax": 0,
"currency": "string",
"compare_at": 0
},
"shipping_id": "string"
}
]
}'
Request Collapse all
Base URL
https://api-qa.reachu.io
Auth
Parameters
— pathrequired
Body required
{
  "line_items": [
    {
      "product_id": 1230168,
      "variant_id": 0,
      "quantity": 0,
      "price_data": {
        "unit_price": 0,
        "tax": 0,
        "currency": "string",
        "compare_at": 0
      },
      "shipping_id": "string"
    }
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!