---
title: updateProductSalesChannelStatus
description: Ürünün satış kanalındaki görünürlüğünü günceller
---

```graphql
mutation UpdateProductSalesChannelStatus($input: UpdateSalesChannelStatusInput!) {
  updateProductSalesChannelStatus(input: $input) { isSuccess errorInputs { productId status } }
}
```

### 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 UpdateProductSalesChannelStatus($input: UpdateSalesChannelStatusInput!) { updateProductSalesChannelStatus(input: $input) { isSuccess errorInputs { productId status } } }",
    "variables": { "input": { "salesChannelId": "SALES_CHANNEL_ID", "data": [ { "productId": "PRODUCT_ID", "status": "VISIBLE" } ] } }
  }'
```


