---
title: "Update concept"
method: PATCH
path: "/api/v1/concepts/{concept_id}"
tags: ["concept"]
---

# Update concept

`PATCH /api/v1/concepts/{concept_id}`

Update concept

## Path parameters

- `concept_id` string, uuid4, required

## Headers

- `Authorization` string, required

## Request body

- UpdateConceptRequest — Base model for all schema
  - `name` string, nullable — A replacement name for the concept
  - `description` string, nullable — A replacement description for the concept
  - `threshold` number, double, nullable — A replacement decision threshold for the concept
  - `regularization` number, double, nullable — How strongly the model adapts to the training labels. Regularization strength. Lower value means the model fits more heavily to the training data

## Response `200`

Concept details

- Concept — Data about a concept that can be used to query a dataset
  - `createdUserId` string, required — The user that created the resource
  - `createdDt` string, date-time, required — The created datetime of the resource
  - `updatedUserId` string, required — The user that last updated the resource
  - `updatedDt` string, date-time, required — The datetime the resource was last updated
  - `name` string, required — The name of the concept
  - `description` string, nullable — A description for the concept
  - `threshold` number, double, nullable — Threshold above which classification is positive
  - `regularization` number, double, nullable — How strongly the model adapts to the training labels. Regularization strength. Lower value means the model fits more heavily to the training data
  - `conceptId` string, uuid4, required — The unique identifier for the concept
  - `datasetId` string, uuid4, required — The unique identifier for the dataset

## Other responses

- `404` — Not found
- `422` — Validation Error

---

[API](https://skmtc.net/coactive/apis/api-reference.md) · [All operations](https://skmtc.net/coactive/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/coactive/api-reference/versions/c24e3835accc/schema)
