curl --request PATCH \
--url https://api.deepl.com/v3/glossaries/{glossary_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "def3a26b-3e84-45b3-84ae-0c0aaf3525f7",
"dictionaries": [
{
"source_lang": "en",
"target_lang": "de",
"entries": "Hello\tGuten Tag",
"entries_format": "tsv"
}
]
}
'{
"glossary_id": "def3a26b-3e84-45b3-84ae-0c0aaf3525f7",
"name": "My Glossary",
"dictionaries": [
{
"source_lang": "EN",
"target_lang": "DE",
"creation_time": "2021-08-03T14:16:18.329Z",
"entry_count": 1
},
{
"source_lang": "DE",
"target_lang": "EN",
"creation_time": "2021-08-03T14:16:18.429Z",
"entry_count": 2
}
]
}Edit glossary details, such as name or a dictionary for a source and target language.
curl --request PATCH \
--url https://api.deepl.com/v3/glossaries/{glossary_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "def3a26b-3e84-45b3-84ae-0c0aaf3525f7",
"dictionaries": [
{
"source_lang": "en",
"target_lang": "de",
"entries": "Hello\tGuten Tag",
"entries_format": "tsv"
}
]
}
'{
"glossary_id": "def3a26b-3e84-45b3-84ae-0c0aaf3525f7",
"name": "My Glossary",
"dictionaries": [
{
"source_lang": "EN",
"target_lang": "DE",
"creation_time": "2021-08-03T14:16:18.329Z",
"entry_count": 1
},
{
"source_lang": "DE",
"target_lang": "EN",
"creation_time": "2021-08-03T14:16:18.429Z",
"entry_count": 2
}
]
}Documentation Index
Fetch the complete documentation index at: https://deepl-c950b784-voice-jobs-api.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authentication with Authorization header and DeepL-Auth-Key authentication scheme. Example: DeepL-Auth-Key <api-key>
A unique ID assigned to the glossary.
JSON object containing the glossary meta-information.
A unique ID assigned to a glossary.
"def3a26b-3e84-45b3-84ae-0c0aaf3525f7"
Name associated with the glossary.
List of dictionaries contained in this glossary. Each dictionary contains a source and target language, as well as pairs of source and target entries.
Show child attributes
The creation time of the glossary in the ISO 8601-1:2019 format (e.g.: 2021-08-03T14:16:18.329Z).