Spis treści dokumentu

API Glosariusza

Zapytanie o słownik terminologiczny

POST/v1/glossary/query

Uzyskaj szczegóły glosariusza według ID.

Pełny adres
https://dltranslator.com/api/v1/glossary/query
Uwierzytelnienie
Należy przekazać API Key w nagłówku żądania Authorization
Content-Type
application/json
Nieprawidłowy format
{ "error": "Invalid API key." }

Przykład

curl
1curl -X POST 'https://dltranslator.com/api/v1/glossary/query' \
2--header 'Authorization: [yourSecretKey]' \
3--header 'Content-Type: application/json' \
4--data '{
5  "glossaryId": "[string]"
6}'

Parametry żądania

ParametryTypDomyślnyOpisPrzykład
*glossaryIdString-

ID glosariusza

-

Odpowiedź

ParametryTypDomyślnyOpisPrzykład
glossaryIdString-

ID glosariusza

-
nameString-

Nazwa glosariusza

-
descString-

Opis słownika terminologicznego

-
targetLangString-

Język docelowy

-
keysString[]-

Lista terminów źródłowych

-
translatedJSON-

Mapowanie JSON terminologii źródłowej na tłumaczenie

-
createdAtDateTime-

Data utworzenia glosariusza

-
updatedAtDateTime-

Czas aktualizacji słownika terminologicznego

-

Typowe błędy

401 Missing API key.

The Authorization request header is required.

401 Invalid API key.

The API key does not exist, has been deleted, or is no longer valid.

400 Missing required parameter: glossaryId.

Provide the glossaryId returned by the create glossary API.

404 Glossary not found.

The glossary does not exist or does not belong to the current API account.