PostCartsIdLineItemsLine_id
Modify specific details of a cart line item using its ID and line item ID within the Medusa MCP Server environment.
Instructions
Update a line item's details in the cart.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | ||
id | No | ||
line_id | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fields": {
"type": "string"
},
"id": {
"type": "string"
},
"line_id": {
"type": "string"
}
},
"type": "object"
}