PUT
/
v3
/
glossaries
/
{glossary_id}
/
dictionaries
curl --request PUT \
  --url https://api.deepl.com/v3/glossaries/{glossary_id}/dictionaries \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "source_lang": "en",
  "target_lang": "de",
  "entries": "Hello\tGuten Tag",
  "entries_format": "tsv"
}'
{
  "source_lang": "EN",
  "target_lang": "DE",
  "entry_count": 1
}

Authorizations

Authorization
string
header
required

Authentication with Authorization header and DeepL-Auth-Key authentication scheme

Path Parameters

glossary_id
string
required

A unique ID assigned to the glossary.

Body

application/json

The dictionary to insert into (or overwrite in) the multilingual glossary.

The body is of type object.

Response

200
application/json

JSON object containing the dictionary meta-information.

The response is of type object.