POST
/
v1
/
cart
/
sell
/
{cartId}
/
add
curl --request POST \
  --url https://public.api.collectpure.com/v1/cart/sell/{cartId}/add \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "productId": "<string>",
  "variantId": "<string>",
  "quantity": 123
}'
{
  "success": true
}

Adds a product to an existing sell cart. This endpoint allows you to specify a product variant and quantity to add to your sell cart. It will retrieve available offers and add appropriate line items to the cart.

Response Example

{
  "success": true
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

cartId
string
required

Cart ID

Body

application/json
productId
string
required

Product ID

variantId
string
required

Variant ID

quantity
number
required

Quantity to add

Response

200
application/json
Default Response
success
boolean