v1

latestOpenAPI 3.0.32026-07-265278189.1 KB
ManageMultilingualGlossaries

Edit glossary details

Edit glossary details, such as name or a dictionary for a source and target language.

patch/v3/glossaries/{glossary_id}

Path parameters

glossary_idstring required

A unique ID assigned to the glossary.

Request body

namestring

A unique ID assigned to a glossary.

Example request

{
  "name": "def3a26b-3e84-45b3-84ae-0c0aaf3525f7",
  "dictionaries": [
    {
      "source_lang": "en",
      "target_lang": "de",
      "entries": "Hello\tGuten Tag",
      "entries_format": "tsv"
    }
  ]
}

Response

JSON object containing the glossary meta-information.

glossary_idstring

A unique ID assigned to a glossary.

namestring

Name associated with the glossary.

creation_timestring date-time

The creation time of the glossary in the ISO 8601-1:2019 format (e.g.: 2021-08-03T14:16:18.329Z).

Example response

{
  "glossary_id": "def3a26b-3e84-45b3-84ae-0c0aaf3525f7",
  "name": "My Glossary",
  "dictionaries": [
    {
      "source_lang": "en",
      "target_lang": "de",
      "entry_count": 1
    }
  ],
  "creation_time": "2021-08-03T14:16:18.329Z"
}