---
title: "Update a product"
method: PUT
path: "/products"
tags: ["products"]
---

# Update a product

`PUT /products`

Updates a product entry.

## Request body

- object
  - `id` string — The id of the product to be updated
  - `name` string — The name of the product
  - `description` string — A brief description of the product
  - `price` number — The price of the product
  - `stock` integer — The stock quantity of the product
  - `category` string — The category of the product

## Response `200`

Product updated successfully

- SuccessResponseSchema
  - `status` string
  - `status_code` integer — The HTTP status code. Usually 200 , 201, 204 etc
  - `message` string — A basic message describing a request was processed successfully. example: "Successfully"

## Other responses

- `400` — Bad Request
- `401` — Authentication error
- `500` — Server error

---

[API](https://skmtc.net/hngprojects/apis/kimiko-golang-swagger.md) · [All operations](https://skmtc.net/hngprojects/apis/kimiko-golang-swagger/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hngprojects/kimiko-golang-swagger/revisions/2d1d3ed96bb9/schema)
