---
title: "Update Term Translation In Dictionary Using Term Id"
method: PUT
path: "/dictionaries/term/{dictionary_id}/{term_id}"
tags: ["Apis", "Dictionaries"]
---

# Update Term Translation In Dictionary Using Term Id

`PUT /dictionaries/term/{dictionary_id}/{term_id}`

## Path parameters

- `dictionary_id` integer, required — This parameter tells the API exactly which dictionary you're interested in. Each dictionary in the system has a unique numerical ID that serves as its primary identifier.
- `term_id` integer, required — The unique identifier of the term. This must be a positive integer that corresponds to an existing term in the system.

## Request body

- UpdateTermTranslationsPayload — Represents the payload used to update one or more translations for a given term. This object contains an array of TermTranslation entries, each specifying a translated text and its target language. When submitted, the existing set of translations for the term will be replaced or augmented according to the provided list.
  - `translations` TermTranslation[], required
    - `translation` string, required — The translated text of the term in the specified target language. This should be the most accurate and contextually appropriate translation of the original term.
    - `language` string, required

## Response `200`

Successful Response

- DictionaryCreated
  - `message` string — Human-readable feedback that communicates the outcome of the dictionary operation with actionable context for your application users. This message provides essential information about operation success, partial completion scenarios, or guidance for addressing any issues that occurred during processing.
  - `status` string — Standardized operation outcome indicator that enables programmatic response handling across all dictionary management workflows. This status field provides consistent, machine-readable confirmation of operation results, allowing your application logic to branch appropriately between success scenarios, partial completion cases, and error conditions.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/camb/apis/fastapi.md) · [All operations](https://skmtc.net/camb/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/camb/fastapi/versions/40ebeee64850/schema)
