Events

Event translation_completed

This event occure when the a translation is completed according to the level of review provided on request. The result is sent directly via the payload

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
translation[result][manual]stringResult of the manual translation encoded in JSON
translation[result][manual]stringResult of the review done on the manual translation encoded in JSON

Example

{
  "event": "translation_completed",
  "translation": {
    "uid": 99999,
    "status": "completed",
    "content_format": "json",
    "results": {
      "auto": "{\"key\":\"Salut Monde\"}",
      "manual": "{\"key\":\"Salut Monde checked by a human\"}",
      "review": "{\"key\":\"Salut Monde checked by two humans\"}"
    }
  }
}
Previous
Auto translation completed