Cloudcart

Learn how to use Cloudcart with Composio

Overview

Enum

CLOUDCART

Description

CloudCart is an e-commerce platform that enables businesses to create and manage online stores efficiently.

Authentication Details

subdomain
stringRequired
api_key
stringRequired

Actions

Tool to add an item to the cart. use after confirming a product selection with desired quantity.

Action Parameters

product_id
integerRequired
quantity
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to remove all items from the specified cart. use when you need to empty the cart before adding new items or starting over.

Action Parameters

cart_id
stringRequired

Action Response

data
object
error
string
message
string
success
boolean
successful
boolean
Tool to create a new category. use when you need to add organizational structure to your product catalog.

Action Parameters

description
string
image
string
meta_description
string
meta_keywords
string
meta_title
string
parent_id
integer
position
integer
title
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to create a new customer in cloudcart. use when you need to register a new customer profile. provide validated customer details (name, email, and password).

Action Parameters

address
string
email
stringRequired
name
stringRequired
password
stringRequired
phone
string

Action Response

data
object
error
string
successful
boolean
Tool to create a new order. use after assembling customer id, cart items, and optional addresses/payment info.

Action Parameters

billing_address
object
currency
customer_id
integerRequired
items
arrayRequired
payment_method
string
shipping_address
object

Action Response

data
object
error
string
successful
boolean
Tool to create a new product. use when you have all details and want to add it to cloudcart.

Action Parameters

barcode
string
categories
array
description
string
images
array
name
stringRequired
price
numberRequired
quantity
integer
sku
string
status
string
tags
array
vendor
string
weight
number

Action Response

data
object
error
string
successful
boolean
Tool to delete a category by its id. use after confirming the correct id to permanently remove it.

Action Parameters

id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete a customer. use when you need to remove a customer by their id. example: "delete customer with id 123".

Action Parameters

customer_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete an order. use after confirming the order exists.

Action Parameters

order_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete a product by its id. use after confirming the product exists to permanently remove it from the catalog.

Action Parameters

product_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve the current shopping cart. use when you need to view or verify the cart contents before checkout.

Action Parameters

cart_id
string

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a list of all categories. use when you need to list available categories for selection.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a list of all customers. use when you need to display or process multiple customer profiles. note: the response is paginated; use page[number] and page[size] to control pagination.

Action Parameters

filter[email]
string
filter[name]
string
page[number]
integer
page[size]
integer
sort
string

Action Response

data
array
error
string
links
object
meta
object
successful
boolean
Tool to retrieve a list of all orders. use when you need to collect orders for processing. returns json api order resources including id, type, and attributes. ensure authentication before calling.

Action Parameters

Action Response

data
array
error
string
successful
boolean
Tool to retrieve all available payment methods. use when you need to list supported payment options before checkout.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a list of products with optional filters. use when you need a paginated catalog of products (e.g., by page, category, price range).

Action Parameters

brand_id
integer
category_id
integer
limit
integer
max_price
number
min_price
number
page
integer
search
string
with_hidden
boolean

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a product with related entities. use when detailed product information is needed after obtaining its id.

Action Parameters

product_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve all available shipping methods. use when you need to list shipping options before checkout.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a list of order payments. use when you need to view payments for orders, optionally filtered by order id or status. useful after creating or updating orders to inspect their payment history.

Action Parameters

limit
integer
order_id
integer
page
integer
status
string

Action Response

data
object
error
string
successful
boolean
Tool to remove an item from the cart. use after confirming the product exists in the cart to delete it.

Action Parameters

product_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to update the quantity of an item in the cart. use when you need to adjust item quantities in the cart before checkout.

Action Parameters

product_id
integerRequired
quantity
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to update an existing category. use when you need to modify category details after reviewing its current values.

Action Parameters

description
string
id
stringRequired
image
string
meta_description
string
meta_keywords
string
meta_title
string
parent_id
integer
position
integer
title
string

Action Response

data
object
error
string
successful
boolean
Tool to update an existing customer. use when modifying customer details like name, email, or address.

Action Parameters

address
string
customer_id
integerRequired
email
string
name
string
password
string
phone
string

Action Response

data
object
error
string
successful
boolean
Tool to update an existing order. use when you need to modify order details after creation (e.g., change status or addresses). provide only the fields you wish to change.

Action Parameters

attributes
objectRequired
order_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to update an existing product's details. use when you need to modify product information after confirming the product id.

Action Parameters

category_id
string
description
string
images
array
name
string
price
number
product_id
stringRequired
stock
integer

Action Response

data
object
error
string
successful
boolean
Tool to create a new product variant for a given product. use when you need to add a variant with specific sku, price, and options.

Action Parameters

option_values
array
price
numberRequired
productId
stringRequired
quantity
integer
sku
stringRequired
weight
number

Action Response

data
object
error
string
successful
boolean
Tool to create a new variant option for a specific product variant. use when you need to add an option (e.g., 'large') with an optional price adjustment to an existing variant.

Action Parameters

is_default
boolean
name
stringRequired
position
integer
price
number
product_id
integerRequired
variant_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to create a new variant parameter for a product variant. use when you need to add custom attributes (e.g., color, size) after a variant is created.

Action Parameters

name
stringRequired
productId
stringRequired
type
string
value
stringRequired
variantId
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to create a new vendor via cloudcart api. use when adding a new brand or partner entity to your store.

Action Parameters

data
objectRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete a vendor by its id. use when removing an obsolete vendor from the store.

Action Parameters

vendor_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve property options relationship for a product. use when you need to fetch which property options are assigned to a product after confirming it exists.

Action Parameters

product_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve details of a specific vendor. use when you have the vendor id.

Action Parameters

vendor_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a list of all vendors. use when you need a paginated list of vendors or filter by name/status. example: "list active vendors on page 2."

Action Parameters

limit
integer
page
integer
search
string
status
string

Action Response

data
array
error
string
limit
integer
page
integer
successful
boolean
total
integer
Tool to update an existing vendor. use when vendor details change and need saving. call after confirming the vendor id.

Action Parameters

data
objectRequired

Action Response

data
object
error
string
successful
boolean