Events

Event auto_translation_completed

This event occure when the automatic part of a translation is completed. The result is sent directly

Parameters

ParameterTypeNote
eventstringevent name
translation[uid]stringID of the translation request
translation[status]stringstatus of the translation
translation[content_format]stringFormat of the result
translation[result][auto]stringResult 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\"}"
    }
  }
}
Previous
About Events