---
title: Update Product
description: Ürün bilgisini günceller
---

İstek yöntemi: POST
Uç nokta: `{{API URL}}`

```graphql
mutation UpdateProduct($input: UpdateProductInput!) {
  updateProduct(input: $input) { id name description updatedAt }
}
```

Örnek Değişkenler:

```json
{ "input": { "id": "ab3150ba-aca7-4794-b8ee-78e2c03bfeb3", "description": "<strong>SA</strong>" } }
```

### cURL

```bash
curl -X POST 'https://api.myikas.dev/api/v2/admin/graphql' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  --data-raw '{
    "query": "mutation UpdateProduct($input: UpdateProductInput!) { updateProduct(input: $input) { id name description updatedAt } }",
    "variables": { "input": { "id": "PRODUCT_ID", "description": "Yeni açıklama" } }
  }'
```


