# Atualizar item do carrinho por ID de carrinho Atualiza um item de carrinho existente ou cria o item no carrinho. Endpoint: PUT /v2/project/{project_id}/cart/{cart_id}/item/{item_sku} Version: 2.0.0 Security: AuthForCart ## Path parameters: - `project_id` (integer, required) ID do projeto. Você pode encontrar esse parâmetro em sua Conta de Distribuidor ao lado do nome do projeto. Example: 44056 - `cart_id` (string, required) ID do carrinho. Example: "custom_id" - `item_sku` (string, required) SKU do item. Example: "booster_mega_1" ## Request fields (application/json): - `quantity` (number) Quantidade do item. ## Response 404 fields (application/json): - `errorCode` (integer) Example: 4001 - `errorMessage` (string) Example: "[0401-4001]: Item with Project Id = 44056 and Sku = booster_mega_12222 not found" - `statusCode` (integer) Example: 404 ## Response 422 fields (application/json): - `errorCode` (integer) Example: 1102 - `errorMessage` (string) Example: "Item quantity must be non-negative integer." - `statusCode` (integer) Example: 422 ## Response 204 fields