Fordítási Feladat API
Fordítás módosítása
Revízió benyújtása lefordított szövegekhez egy feladatban, a fordítások újragenerálásának lehetőségével.
- Teljes cím
- https://otranslator.com/api/v1/translation/updateTexts
- Hitelesítés
- Az API kulcsot az Authorization kérésfejlécben kell átadni
- Content-Type
- application/json
- Hibás formátum
- { "error": "Invalid API key." }
Tudnivalók
A revisedTexts a feladatfordítási gyorsítótárba íródik, amely a manuálisan átdolgozott fordítások mentésére szolgál.
Amikor a startTranslation true, a revízió mentése után újra megtörténik a feladat feldolgozása.
Példa
1curl -X POST 'https://otranslator.com/api/v1/translation/updateTexts' \
2--header 'Authorization: [yourSecretKey]' \
3--header 'Content-Type: application/json' \
4--data '{
5 "taskId": "[string]",
6 "revisedTexts": {
7 "key": "value"
8 }
9}'Kérés Paraméterei
| Paraméterek | Típus | Alapértelmezett | Leírás | Példa |
|---|---|---|---|---|
| *taskId | String | - | Fordítási feladat azonosítója | - |
| *revisedTexts | JSON | - | Módosított fordítás | - |
| startTranslation | Boolean | false | Fordítás újragenerálása | - |
Válasz
| Paraméterek | Típus | Alapértelmezett | Leírás | Példa |
|---|---|---|---|---|
| success | Boolean | - | Sikeres volt-e a frissítés | - |
Gyakori hibák
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: taskId.
Provide the taskId returned by the create translation task API.
404 Task not found.
The task does not exist, has been deleted, does not belong to the current API account, or was not created through the API.
409 Task is processing. Try again after it finishes.
revisedTexts cannot be updated while the task is processing.