Create cart

POST /cart

This endpoint allows you to create a cart with a unique identifier for each of your users.

The unique identifier for all cart requests is the user's Object Id. Here's a generator and helper function you can use. You do not need to register a user beforehand. When you do a request to /cart, just pass in the new user's Object Id. You'll then use the same Object Id for subsequent requests to add more items to the cart, get a cart, and create an order.

If the product you're adding to the Request Body has a variant, then pass in the Variant Id. If the product doesn't have any variants, you pass in the Product Id as the Variant Id.

Headers

Header
Type
Description

Authorization

string

Bearer token.

customuserid

string

This is a unique Object Id identifier that you create for each of your users.

Request body

{
    "items": [
        {"variantId": 123, "product": 123, "quantity": 1}
    ]
}

Response

{
  "status": "Cart Created",
}

Last updated

Was this helpful?