Skip to main content
At the moment the commands are only documented here while they are still being tested. An announcement in the future will provide details when they will be usable.

Get Cart

Get the contents of a cart.

Arguments

string
The cart key.
int
The user ID.

Clear Cart

Clear the contents of a cart.

Arguments

string
The cart key.
int
The user ID.
Examples

Add to Cart

Add an item to the cart.

Arguments

string
The cart key.
int
The user ID.
int
required
The product ID.
int
The quantity of the product.

Remove Item

Remove an item from the cart.

Arguments

string
The cart key.
int
The user ID.
int
required
The item key.

Update Item

Update the quantity of an item in the cart.

Arguments

string
The cart key.
int
The user ID.
int
required
The item key.
int
required
The quantity of the item.