Callback Notification

At the same time as when a notification is sent to the Conyac site, a JSON string similar to the following will be sent to the callback notification URL that was specified in the OAuth 2.0 client application during registration.

{ 'notification':{
    'sender_id': ,
    'sender_name': ,
    'factor_type': ,
    'factor_id': ,
    'type_id': ,
    'data': {}
}

(Specification of notification values ​​for this POST is currently under consideration. Parameters may change in the future.)

In cases where the client application isn’t responding and when the returning HTTP Status is other than 200, the callback notification will be resent until a successful delivery is made. The time table for this resending is five minutes, 30 minutes, 60 minutes, 2 hours, 5 hours, 12 hours, 24 hours, and 48 hours later.

After resending the callback, there is a possibility the order may change. In addition, after the event occurs there will be some time difference but the time in the callback data will not change.

Cases

  1. New Request
  2. Callback Transmission => Failed
  3. Request Cancellation
  4. Resend new request callback

In this flow, the data from (4) is interpreted as data across two time points, and the contents of (3) are not included in the callback.

In preparatation for this, it is recommended you use the application_events endpoint with the since parameter to periodically acquire the events within your application.

Request Created

{
  "id": 13,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "project.created",
  "created_at": "2014-06-10T10:33:42.000+09:00",
  "retry_count": 1,
  "project": {
    "id": 6,
    "organization_id": 4,
    "user_id": 107,
    "point": 36,
    "created_at": "2014-06-10T10:33:42.935+09:00",
    "updated_at": "2014-06-10T10:33:42.935+09:00",
    "language_id": "ja",
    "translated_language_id": "en",
    "individual": false,
    "url": "https://biz.conyac.cc/api/v1/projects/6",
    "html_url": "https://conyac.cc/b/projects/6",
    "question_count": 1,
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:32:38.000+09:00",
      "updated_at": "2014-06-10T10:33:41.000+09:00",
      "locale": "en",
      "picture_url": "https://secure.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0.png?d=identicon&r=PG&s=48",
      "translator": false
    },
    "questions": [
      {
        "id": 9,
        "project_id": 6,
        "question_source_id": 10,
        "user_id": 107,
        "title": "hogehoge2",
        "letter_count": 9,
        "language_id": "ja",
        "translated_language_id": "en",
        "status": 0,
        "status_text": "pending",
        "total_point": 36,
        "created_at": "2014-06-10T10:33:42.936+09:00",
        "updated_at": "2014-06-10T10:33:42.936+09:00",
        "custom_field": null,
        "description": "",
        "ended_at": null,
        "grab_expires_at": null,
        "translated_at": null,
        "individual": false,
        "double_check": false,
        "escape_text": false,
        "url": "https://biz.conyac.cc/api/v1/questions/9",
        "html_url": "https://conyac.cc/b/projects/6/questions/9",
        "cancelable": true,
        "organization_id": 4,
        "file_type": "string"
      }
    ],
    "language": {
      "id": "ja",
      "localized_name": "Japanese"
    },
    "translated_language": {
      "id": "en",
      "localized_name": "English"
    }
  }
}

Request Cancelled

{
  "id": 14,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "question.canceled",
  "created_at": "2014-06-10T10:33:43.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 9,
    "project_id": 6,
    "question_source_id": 10,
    "user_id": 107,
    "title": "hogehoge2",
    "letter_count": 9,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 3,
    "status_text": "cancelled",
    "total_point": 36,
    "created_at": "2014-06-10T10:33:42.000+09:00",
    "updated_at": "2014-06-10T10:33:42.000+09:00",
    "custom_field": null,
    "description": "",
    "ended_at": null,
    "grab_expires_at": null,
    "translated_at": null,
    "individual": false,
    "double_check": false,
    "escape_text": false,
    "url": "https://biz.conyac.cc/api/v1/questions/9",
    "html_url": "https://conyac.cc/b/projects/6/questions/9",
    "cancelable": false,
    "organization_id": 4,
    "file_type": "string",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:32:38.000+09:00",
      "updated_at": "2014-06-10T10:33:41.000+09:00",
      "locale": "en",
      "picture_url": "https://secure.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0.png?d=identicon&r=PG&s=48",
      "translator": false
    },
    "language": {
      "id": "ja",
      "localized_name": "Japanese"
    },
    "translated_language": {
      "id": "en",
      "localized_name": "English"
    }
  }
}

Request relisted

{
  "id": 11,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "question.relisted",
  "created_at": "2014-06-10T10:33:33.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 8,
    "project_id": 5,
    "question_source_id": 9,
    "user_id": 107,
    "title": "hogehoge2",
    "letter_count": 9,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 1,
    "status_text": "listing",
    "total_point": 36,
    "created_at": "2014-06-10T10:33:23.000+09:00",
    "updated_at": "2014-06-10T10:33:33.906+09:00",
    "custom_field": null,
    "description": "",
    "ended_at": null,
    "grab_expires_at": null,
    "translated_at": null,
    "individual": false,
    "double_check": false,
    "escape_text": false,
    "url": "https://biz.conyac.cc/api/v1/questions/8",
    "html_url": "https://conyac.cc/b/projects/5/questions/8",
    "cancelable": true,
    "organization_id": 4,
    "file_type": "string",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:32:38.000+09:00",
      "updated_at": "2014-06-10T10:33:18.000+09:00",
      "locale": "en",
      "picture_url": "https://secure.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0.png?d=identicon&r=PG&s=48",
      "translator": false
    },
    "language": {
      "id": "ja",
      "localized_name": "Japanese"
    },
    "translated_language": {
      "id": "en",
      "localized_name": "English"
    }
  }
}

Request was translated

{
  "id": 6,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "question.translated",
  "created_at": "2014-06-10T10:33:13.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 6,
    "project_id": 3,
    "question_source_id": 7,
    "user_id": 107,
    "title": "body2<hoge>ddd</hoge>",
    "letter_count": 8,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 6,
    "status_text": "translated",
    "total_point": 32,
    "created_at": "2014-06-10T10:32:50.000+09:00",
    "updated_at": "2014-06-10T10:33:13.904+09:00",
    "custom_field": null,
    "description": "",
    "ended_at": null,
    "grab_expires_at": "2014-06-10T13:33:03.000+09:00",
    "translated_at": "2014-06-10T10:33:13.903+09:00",
    "individual": false,
    "double_check": false,
    "escape_text": false,
    "url": "https://biz.conyac.cc/api/v1/questions/6",
    "html_url": "https://conyac.cc/b/projects/3/questions/6",
    "cancelable": false,
    "organization_id": 4,
    "file_type": "html_text",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:32:38.000+09:00",
      "updated_at": "2014-06-10T10:32:38.000+09:00",
      "locale": "en",
      "picture_url": "https://secure.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0.png?d=identicon&r=PG&s=48",
      "translator": false
    },
    "language": {
      "id": "ja",
      "localized_name": "Japanese"
    },
    "translated_language": {
      "id": "en",
      "localized_name": "English"
    }
  }
}

Request completed

Sent 24 hours after the translation is posted.

{
  "id": 7,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "question.completed",
  "created_at": "2014-06-10T10:33:14.000+09:00",
  "retry_count": 2,
  "question": {
    "id": 6,
    "project_id": 3,
    "question_source_id": 7,
    "user_id": 107,
    "title": "body2<hoge>ddd</hoge>",
    "letter_count": 8,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 4,
    "status_text": "completed",
    "total_point": 32,
    "created_at": "2014-06-10T10:32:50.000+09:00",
    "updated_at": "2014-06-10T10:33:13.000+09:00",
    "custom_field": null,
    "description": "",
    "ended_at": null,
    "grab_expires_at": "2014-06-10T13:33:03.000+09:00",
    "translated_at": "2014-06-10T10:33:13.000+09:00",
    "individual": false,
    "double_check": false,
    "escape_text": false,
    "url": "https://biz.conyac.cc/api/v1/questions/6",
    "html_url": "https://conyac.cc/b/projects/3/questions/6",
    "cancelable": false,
    "organization_id": 4,
    "file_type": "html_text",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:32:38.000+09:00",
      "updated_at": "2014-06-10T10:32:38.000+09:00",
      "locale": "en",
      "picture_url": "https://secure.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0.png?d=identicon&r=PG&s=48",
      "translator": false
    },
    "language": {
      "id": "ja",
      "localized_name": "Japanese"
    },
    "translated_language": {
      "id": "en",
      "localized_name": "English"
    }
  }
}

Request expired

{
  "id": 12,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "question.expired",
  "created_at": "2014-06-10T10:33:39.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 8,
    "project_id": 5,
    "question_source_id": 9,
    "user_id": 107,
    "title": "hogehoge2",
    "letter_count": 9,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 5,
    "status_text": "expired",
    "total_point": 36,
    "created_at": "2014-06-10T10:33:23.000+09:00",
    "updated_at": "2014-06-10T10:33:38.000+09:00",
    "custom_field": null,
    "description": "",
    "ended_at": "2014-06-10T10:33:39.188+09:00",
    "grab_expires_at": "2014-06-10T10:33:39.000+09:00",
    "translated_at": null,
    "individual": false,
    "double_check": false,
    "escape_text": false,
    "url": "https://biz.conyac.cc/api/v1/questions/8",
    "html_url": "https://conyac.cc/b/projects/5/questions/8",
    "cancelable": false,
    "organization_id": 4,
    "file_type": "string",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:32:38.000+09:00",
      "updated_at": "2014-06-10T10:33:18.000+09:00",
      "locale": "en",
      "picture_url": "https://secure.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0.png?d=identicon&r=PG&s=48",
      "translator": false
    },
    "language": {
      "id": "ja",
      "localized_name": "Japanese"
    },
    "translated_language": {
      "id": "en",
      "localized_name": "English"
    }
  }
}

Translation posted

This will be called for each time a translator posts a translation.

{
  "id": 5,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "question.submitted_translation",
  "created_at": "2014-06-10T10:33:13.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 6,
    "project_id": 3,
    "question_source_id": 7,
    "user_id": 107,
    "title": "body2<hoge>ddd</hoge>",
    "letter_count": 8,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 2,
    "status_text": "translating",
    "total_point": 32,
    "created_at": "2014-06-10T10:32:50.000+09:00",
    "updated_at": "2014-06-10T10:33:07.000+09:00",
    "custom_field": null,
    "description": "",
    "ended_at": null,
    "grab_expires_at": "2014-06-10T13:33:03.000+09:00",
    "translated_at": null,
    "individual": false,
    "double_check": false,
    "escape_text": false,
    "url": "https://biz.conyac.cc/api/v1/questions/6",
    "html_url": "https://conyac.cc/b/projects/3/questions/6",
    "cancelable": false,
    "organization_id": 4,
    "file_type": "html_text",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:32:38.000+09:00",
      "updated_at": "2014-06-10T10:32:38.000+09:00",
      "locale": "en",
      "picture_url": "https://secure.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0.png?d=identicon&r=PG&s=48",
      "translator": false
    },
    "language": {
      "id": "ja",
      "localized_name": "Japanese"
    },
    "translated_language": {
      "id": "en",
      "localized_name": "English"
    }
  }
}

Comment

Feedback