Salla Docs
Merchant API
  • Merchant API
  • Salla OAuth 2.0
Partner APIs
  • App API
  • Shipment API
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Change Log
Salla CLI
Merchant API
  • Merchant API
  • Salla OAuth 2.0
Partner APIs
  • App API
  • Shipment API
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Change Log
Salla CLI
Salla - Opensource
Salla - Developers Community
  1. Cart
  • Overview
  • Languages
  • Notify
  • Event
  • Storage
  • Configuration
  • Forms
  • Helpers
  • Auth
    • Login
    • Logout
    • Verify
    • Resend
    • Register
    • Refresh
  • Cart
    • Latest
    • Details
    • Quick Add
    • Add Item
    • Delete Item
    • Delete Image
    • Add Coupon
    • Remove Coupon
    • Get Upload Image
    • Get Quick Order Settings
    • Create Quick Order
    • Order Status
    • Get Current Cart Id
    • Price Quote
  • Wishlist
    • Add
    • Remove
    • Toggle
  • Loyalty
    • Get Program
    • Exchange
    • Reset
  • Comment
    • Add Comment
    • Fetch
    • Get Page Comments
    • Get Product Comments
  • Profile
    • Update profile
    • Update contact
  • Product
    • Get price
    • Product availability
    • Categories
    • Offer details
    • Search products
    • Get Gift Details
    • Add Gift To Cart
    • Upload Gift Image
    • Get Product Details
    • Fetch
    • Fetch Options
    • Size Guides
  • Order
    • Create cart from order
    • Cancel
    • Send invoice
    • Show order
  • Booking
    • Add
  • Rating
    • Order
    • Store
    • Products
    • Shipping
  • Currency
    • Change
    • List
  • Component
    • Reviews
    • Menus
  1. Cart

Add Item

This addItem endpoint adds an item from the merchant's store to the customer's shopping cart. The customer may select the item, type in the quantity he wants to order, and click on the "add to cart" button. This sends the product to the shopping cart, and then the customer may continue to shop for other items.
TIP
The add item endpoint has been implemented in the Add Product Web Component, and it's ready for use.

Payload#

AddItemPayload
id
number 
required
The id of the item that will be added to the cart.
quantity
number 
required
The quantity of the item that will be added to the cart.
Default:
1
options
array [object {2}] 
optional
The options list for the item will be added to the cart
id
number 
optional
The option id
Example:
98789
value
string  | number  | array[number]
optional
The option value
Example:
10
notes
string 
AddItemPayload.notes
optional
Add notes to the product that will be added to the cart if needed.
file
string  | object 
BinaryType
optional
Attach file, for example image, to the product that will be added to the cart if needed.

Response#

Success
Error
cart.addItem.success
success
boolean 
success
required
Response flag
status
enum<number> 
status
required
Allowed values:
200201202
data
object 
data
optional
Response data.
cart
object 
CartSummary
required
offer
object 
array[Offer]
required

Usage#

The method addItem adds an item into the cart, the developer may call the method addItem as follows:

Simple Product#

Variable product#

Events#

This endpoint may trigger two events, the onItemAdded and onItemAddedFailed events.

onItemAdded#

This event is triggered when adding an item to the cart is done without having any errors coming back from the backend.

onItemAddedFailed#

This event is triggered when adding an item to the cart is not completed and an error has occurred. For example, the id of the product to be added to the cart was not found.
Modified at 2025-03-04 12:54:02
Previous
Quick Add
Next
Delete Item