cart_remove_item
InactiveTool of ComOS Federation Gateway
Remove a product from the shopping cart. REQUIRED: cartId must be provided on every call for cart persistence. Use customer email for authenticated users or a consistent ID like "guest-abc123" for guests. Also requires tenant_id.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"tenant_id",
"cartId",
"productId"
],
"properties": {
"cartId": {
"type": "string",
"description": "REQUIRED for cart persistence. Use customer email for authenticated users, or a consistent ID like \"guest-abc123\" for guests. Without this, cart items will NOT persist between calls."
},
"productId": {
"type": "string",
"description": "Product ID to remove from cart"
},
"tenant_id": {
"type": "string",
"description": "Target tenant ID (required). Use federation_list_tenants() to see available tenants."
},
"auth_token": {
"type": "string",
"description": "JWT auth token for authenticated operations (cart, orders). Get from api_call POST /v1/auth/login."
}
},
"additionalProperties": false
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
ComOS Federation Gateway
https://github.com/ronrey/comos-federation
2/7 registries