---
title: "Update Feedback Config Endpoint"
method: PATCH
path: "/api/v1/feedback-configs"
tags: ["feedback-configs"]
---

# Update Feedback Config Endpoint

`PATCH /api/v1/feedback-configs`

## Request body

- UpdateFeedbackConfigSchema
  - `feedback_key` string, required
  - `feedback_config` FeedbackConfig
    - `type` 'continuous' | 'categorical' | 'freeform', required — Enum for feedback types.
    - `min` number, nullable
    - `max` number, nullable
    - `categories` FeedbackCategory[], nullable
      - `value` number, required
      - `label` string, nullable
  - `is_lower_score_better` boolean, nullable

## Response `200`

Successful Response

- FeedbackConfigSchema
  - `feedback_key` string, required
  - `feedback_config` FeedbackConfig, required
    - `type` 'continuous' | 'categorical' | 'freeform', required — Enum for feedback types.
    - `min` number, nullable
    - `max` number, nullable
    - `categories` FeedbackCategory[], nullable
      - `value` number, required
      - `label` string, nullable
  - `tenant_id` string, uuid, required
  - `modified_at` string, date-time, required
  - `is_lower_score_better` boolean, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/langchain-ai/apis/langsmith.md) · [All operations](https://skmtc.net/langchain-ai/apis/langsmith/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/langchain-ai/langsmith/revisions/a0acb3a6a101/schema)
