Events
Event auto_translation_completed
This event occure when the automatic part of a translation is completed. The result is sent directly
Parameters
Parameter | Type | Note |
---|---|---|
event | string | event name |
translation[uid] | string | ID of the translation request |
translation[status] | string | status of the translation |
translation[content_format] | string | Format of the result |
translation[result][auto] | string | Result of the automatic translation encoded in JSON |
Example
{
"event": "auto_translation_completed",
"translation": {
"uid": 99999,
"status": "completed",
"content_format": "json",
"results": {
"auto": "{\"key\":\"Salut Monde\"}"
}
}
}