---
title: "Add Term To Dictionary"
method: POST
path: "/dictionaries/{dictionary_id}/add-term"
tags: ["Apis", "Dictionaries"]
---

# Add Term To Dictionary

`POST /dictionaries/{dictionary_id}/add-term`

## 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.

## Request body

- AddDictionaryTermPayload — Represents the payload used to add one or more translations for a given term. This object contains an array of 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)
