コールバック通知

アプリケーションイベント作成時にConyac 本サイトへのOAuth 2.0クライアントアプリケーション登録時に指定したコールバック通知URLに以下のようなようなJSON文字列がPOSTされます。

クライアントアプリケーションが応答しないもしくは、200以外のHTTP Statusを返す場合には、5分後、30分後、60分後、2時間後、5時間後、12時間後、24時間後、48時間後と送信を試みますが、それ以後の再送は行いません。

再送除に、callbackの順番が逆転する可能性があります。また、event発生後、再送等でcallbackまでに時差が発生し、callback発行までにデータの変更が発生してもcallbackデータは変更されません。 例:

  1. 新規依頼
  2. 新規依頼のcalllback送信 => 失敗
  3. 依頼のキャンセル
  4. 新規依頼のcalllbackを再送

という流れの場合、4のデータは、2時点でのデータとなり3の内容はコールバックにはふくまれません。

依頼の新規作成

{
  "id": 12,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "simple_question.created",
  "created_at": "2014-06-10T10:32:24.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 108,
    "description": null,
    "user_id": 107,
    "parent_id": null,
    "type_id": 1,
    "published_scope": 2,
    "expires_at": "2014-06-11T10:33:24.967+09:00",
    "views_count": 0,
    "letter_count": 12,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 0,
    "status_text": "Pending",
    "published_at": "2014-06-10T10:33:24.967+09:00",
    "translated_at": null,
    "created_at": "2014-06-10T10:32:24.970+09:00",
    "updated_at": "2014-06-10T10:32:24.970+09:00",
    "tag_text": null,
    "draft_question_id": null,
    "first_body": "hoge",
    "native": false,
    "translations_count": 0,
    "working_translations_count": 0,
    "individual": false,
    "progress_rate": 0,
    "organization_id": 4,
    "escape_text": true,
    "text_format": 1,
    "custom_field": "test1",
    "cancelable": true,
    "listing?": false,
    "total_point": 800,
    "question_bodies": [
      {
        "id": 1029341680,
        "question_id": 108,
        "display_order": 1,
        "body": "hoge",
        "translated_at": null,
        "letter_count": 4,
        "translations_count": 0,
        "created_at": "2014-06-10T10:32:24.972+09:00",
        "updated_at": "2014-06-10T10:32:24.972+09:00"
      },
      {
        "id": 1029341681,
        "question_id": 108,
        "display_order": 2,
        "body": "hoge<a href='/'>{{{{hoge}}}</a>",
        "translated_at": null,
        "letter_count": 8,
        "translations_count": 0,
        "created_at": "2014-06-10T10:32:24.974+09:00",
        "updated_at": "2014-06-10T10:32:24.974+09:00"
      }
    ],
    "url": "https://biz.conyac.cc/api/v1/simple/questions/108",
    "html_url": "https://conyac.cc/questions/108",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:31:49.000+09:00",
      "updated_at": "2014-06-10T10:31:49.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"
    }
  }
}

依頼のキャンセル

{
  "id": 2,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "simple_question.canceled",
  "created_at": "2014-06-10T10:31:55.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 105,
    "description": null,
    "user_id": 107,
    "parent_id": null,
    "type_id": 1,
    "published_scope": 2,
    "expires_at": "2014-06-11T10:32:55.000+09:00",
    "views_count": 0,
    "letter_count": 12,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 0,
    "status_text": "Pending",
    "published_at": "2014-06-10T10:32:55.000+09:00",
    "translated_at": null,
    "created_at": "2014-06-10T10:31:55.000+09:00",
    "updated_at": "2014-06-10T10:31:55.000+09:00",
    "tag_text": null,
    "draft_question_id": null,
    "first_body": "hoge",
    "native": false,
    "translations_count": 0,
    "working_translations_count": 0,
    "individual": false,
    "progress_rate": 0,
    "organization_id": 4,
    "escape_text": true,
    "text_format": 1,
    "custom_field": "test1",
    "cancelable": true,
    "listing?": false,
    "total_point": 800,
    "question_bodies": [
      {
        "id": 1029341674,
        "question_id": 105,
        "display_order": 1,
        "body": "hoge",
        "translated_at": null,
        "letter_count": 4,
        "translations_count": 0,
        "created_at": "2014-06-10T10:31:55.000+09:00",
        "updated_at": "2014-06-10T10:31:55.000+09:00"
      },
      {
        "id": 1029341675,
        "question_id": 105,
        "display_order": 2,
        "body": "hoge<a href='/'>{{{{hoge}}}</a>",
        "translated_at": null,
        "letter_count": 8,
        "translations_count": 0,
        "created_at": "2014-06-10T10:31:55.000+09:00",
        "updated_at": "2014-06-10T10:31:55.000+09:00"
      }
    ],
    "url": "https://biz.conyac.cc/api/v1/simple/questions/105",
    "html_url": "https://conyac.cc/questions/105",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:31:49.000+09:00",
      "updated_at": "2014-06-10T10:31:49.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"
    }
  }
}

翻訳の投稿

{
  "id": 13,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "simple_question.submitted_translation",
  "created_at": "2014-06-10T10:32:32.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 108,
    "description": null,
    "user_id": 107,
    "parent_id": null,
    "type_id": 1,
    "published_scope": 2,
    "expires_at": "2014-06-11T10:33:24.000+09:00",
    "views_count": 1,
    "letter_count": 12,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 1,
    "status_text": "In Progress",
    "published_at": "2014-06-10T10:33:24.000+09:00",
    "translated_at": null,
    "created_at": "2014-06-10T10:32:24.000+09:00",
    "updated_at": "2014-06-10T10:32:25.000+09:00",
    "tag_text": null,
    "draft_question_id": null,
    "first_body": "hoge",
    "native": false,
    "translations_count": 1,
    "working_translations_count": 0,
    "individual": false,
    "progress_rate": 0,
    "organization_id": 4,
    "escape_text": true,
    "text_format": 1,
    "custom_field": "test1",
    "cancelable": false,
    "listing?": true,
    "total_point": 800,
    "url": "https://biz.conyac.cc/api/v1/simple/questions/108",
    "html_url": "https://conyac.cc/questions/108",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:31:49.000+09:00",
      "updated_at": "2014-06-10T10:31:49.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": {
    "id": 1824432910,
    "question_id": 108,
    "question_body_id": 1029341680,
    "body": "hoge hoge hoge hoge hoge hoge hoge hoge hoge hoge ",
    "created_at": "2014-06-10T10:32:29.000+09:00",
    "updated_at": "2014-06-10T10:32:32.320+09:00",
    "user_id": 103,
    "trainee": false,
    "posted_at": "2014-06-10T10:32:32.314+09:00",
    "comments_count": 0,
    "user": {
      "id": 103,
      "login": "testf14023639060396569",
      "created_at": "2014-06-10T10:31:46.000+09:00",
      "updated_at": "2014-06-10T10:32:27.000+09:00",
      "locale": "en",
      "picture_url": "https://secure.gravatar.com/avatar/fcc52ba025f2f213479020731e4622b7.png?d=identicon&r=PG&s=48",
      "translator": true,
      "native_language": null,
      "last_accessed_at": "2014-06-10T10:32:32.000+09:00",
      "online_status": 1,
      "online_status_text": "Online",
      "grade_text": "Standard",
      "rate": 100
    }
  }
}

翻訳完了(全部のquestion_bodyに一つ以上翻訳がついた)(未完了)

{
  "id": 8,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "simple_question.translated",
  "created_at": "2014-06-10T10:32:09.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 107,
    "description": null,
    "user_id": 107,
    "parent_id": null,
    "type_id": 1,
    "published_scope": 2,
    "expires_at": "2014-06-11T10:32:55.000+09:00",
    "views_count": 2,
    "letter_count": 12,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 1,
    "status_text": "In Progress",
    "published_at": "2014-06-10T10:32:55.000+09:00",
    "translated_at": null,
    "created_at": "2014-06-10T10:31:55.000+09:00",
    "updated_at": "2014-06-10T10:31:57.000+09:00",
    "tag_text": null,
    "draft_question_id": null,
    "first_body": "hoge",
    "native": false,
    "translations_count": 2,
    "working_translations_count": 0,
    "individual": false,
    "progress_rate": 50,
    "organization_id": 4,
    "escape_text": true,
    "text_format": 1,
    "custom_field": "test1",
    "cancelable": false,
    "listing?": true,
    "total_point": 800,
    "question_bodies": [
      {
        "id": 1029341678,
        "question_id": 107,
        "display_order": 1,
        "body": "hoge",
        "translated_at": null,
        "letter_count": 4,
        "translations_count": 1,
        "created_at": "2014-06-10T10:31:55.000+09:00",
        "updated_at": "2014-06-10T10:31:55.000+09:00",
        "translations": [
          {
            "id": 1824432906,
            "question_id": 107,
            "question_body_id": 1029341678,
            "body": "hoge hoge hoge hoge hoge hoge hoge hoge hoge hoge ",
            "created_at": "2014-06-10T10:32:01.000+09:00",
            "updated_at": "2014-06-10T10:32:03.000+09:00",
            "user_id": 103,
            "trainee": false,
            "posted_at": "2014-06-10T10:32:03.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 103,
              "login": "testf14023639060396569",
              "created_at": "2014-06-10T10:31:46.000+09:00",
              "updated_at": "2014-06-10T10:31:59.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/fcc52ba025f2f213479020731e4622b7.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2014-06-10T10:32:09.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Standard",
              "rate": 100
            }
          }
        ]
      },
      {
        "id": 1029341679,
        "question_id": 107,
        "display_order": 2,
        "body": "hoge<a href='/'>{{{{hoge}}}</a>",
        "translated_at": null,
        "letter_count": 8,
        "translations_count": 0,
        "created_at": "2014-06-10T10:31:55.000+09:00",
        "updated_at": "2014-06-10T10:31:55.000+09:00",
        "translations": [
          {
            "id": 1824432907,
            "question_id": 107,
            "question_body_id": 1029341679,
            "body": "hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>",
            "created_at": "2014-06-10T10:32:06.000+09:00",
            "updated_at": "2014-06-10T10:32:09.000+09:00",
            "user_id": 103,
            "trainee": false,
            "posted_at": "2014-06-10T10:32:09.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 103,
              "login": "testf14023639060396569",
              "created_at": "2014-06-10T10:31:46.000+09:00",
              "updated_at": "2014-06-10T10:31:59.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/fcc52ba025f2f213479020731e4622b7.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2014-06-10T10:32:09.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Standard",
              "rate": 100
            }
          }
        ]
      }
    ],
    "url": "https://biz.conyac.cc/api/v1/simple/questions/107",
    "html_url": "https://conyac.cc/questions/107",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:31:49.000+09:00",
      "updated_at": "2014-06-10T10:31:49.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"
    }
  }
}

依頼の完了

{
  "id": 11,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "simple_question.finished",
  "created_at": "2014-06-10T10:32:23.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 107,
    "description": null,
    "user_id": 107,
    "parent_id": null,
    "type_id": 1,
    "published_scope": 2,
    "expires_at": "2014-06-11T10:32:55.000+09:00",
    "views_count": 4,
    "letter_count": 12,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 4,
    "status_text": "Completed",
    "published_at": "2014-06-10T10:32:55.000+09:00",
    "translated_at": "2014-06-10T10:32:23.000+09:00",
    "created_at": "2014-06-10T10:31:55.000+09:00",
    "updated_at": "2014-06-10T10:32:23.165+09:00",
    "tag_text": null,
    "draft_question_id": null,
    "first_body": "hoge",
    "native": false,
    "translations_count": 4,
    "working_translations_count": 0,
    "individual": false,
    "progress_rate": 100,
    "organization_id": 4,
    "escape_text": true,
    "text_format": 1,
    "custom_field": "test1",
    "cancelable": false,
    "listing?": false,
    "total_point": 800,
    "question_bodies": [
      {
        "id": 1029341678,
        "question_id": 107,
        "display_order": 1,
        "body": "hoge",
        "translated_at": "2014-06-10T10:32:17.000+09:00",
        "letter_count": 4,
        "translations_count": 2,
        "created_at": "2014-06-10T10:31:55.000+09:00",
        "updated_at": "2014-06-10T10:32:17.000+09:00",
        "translations": [
          {
            "id": 1824432906,
            "question_id": 107,
            "question_body_id": 1029341678,
            "body": "hoge hoge hoge hoge hoge hoge hoge hoge hoge hoge ",
            "created_at": "2014-06-10T10:32:01.000+09:00",
            "updated_at": "2014-06-10T10:32:03.000+09:00",
            "user_id": 103,
            "trainee": false,
            "posted_at": "2014-06-10T10:32:03.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 103,
              "login": "testf14023639060396569",
              "created_at": "2014-06-10T10:31:46.000+09:00",
              "updated_at": "2014-06-10T10:31:59.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/fcc52ba025f2f213479020731e4622b7.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2014-06-10T10:32:10.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Standard",
              "rate": 100
            }
          },
          {
            "id": 1824432908,
            "question_id": 107,
            "question_body_id": 1029341678,
            "body": "hoge hoge hoge hoge hoge hoge hoge hoge hoge hoge ",
            "created_at": "2014-06-10T10:32:14.000+09:00",
            "updated_at": "2014-06-10T10:32:17.000+09:00",
            "user_id": 104,
            "trainee": false,
            "posted_at": "2014-06-10T10:32:17.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 104,
              "login": "testf1402363906241023",
              "created_at": "2014-06-10T10:31:46.000+09:00",
              "updated_at": "2014-06-10T10:32:13.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/783f0995fc92dbaf445aa2d4d1aea2da.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2014-06-10T10:32:23.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Standard",
              "rate": 100
            }
          }
        ]
      },
      {
        "id": 1029341679,
        "question_id": 107,
        "display_order": 2,
        "body": "hoge<a href='/'>{{{{hoge}}}</a>",
        "translated_at": "2014-06-10T10:32:23.000+09:00",
        "letter_count": 8,
        "translations_count": 1,
        "created_at": "2014-06-10T10:31:55.000+09:00",
        "updated_at": "2014-06-10T10:32:23.000+09:00",
        "translations": [
          {
            "id": 1824432907,
            "question_id": 107,
            "question_body_id": 1029341679,
            "body": "hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>",
            "created_at": "2014-06-10T10:32:06.000+09:00",
            "updated_at": "2014-06-10T10:32:09.000+09:00",
            "user_id": 103,
            "trainee": false,
            "posted_at": "2014-06-10T10:32:09.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 103,
              "login": "testf14023639060396569",
              "created_at": "2014-06-10T10:31:46.000+09:00",
              "updated_at": "2014-06-10T10:31:59.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/fcc52ba025f2f213479020731e4622b7.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2014-06-10T10:32:10.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Standard",
              "rate": 100
            }
          },
          {
            "id": 1824432909,
            "question_id": 107,
            "question_body_id": 1029341679,
            "body": "hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>",
            "created_at": "2014-06-10T10:32:19.000+09:00",
            "updated_at": "2014-06-10T10:32:23.000+09:00",
            "user_id": 104,
            "trainee": false,
            "posted_at": "2014-06-10T10:32:23.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 104,
              "login": "testf1402363906241023",
              "created_at": "2014-06-10T10:31:46.000+09:00",
              "updated_at": "2014-06-10T10:32:13.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/783f0995fc92dbaf445aa2d4d1aea2da.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2014-06-10T10:32:23.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Standard",
              "rate": 100
            }
          }
        ]
      }
    ],
    "url": "https://biz.conyac.cc/api/v1/simple/questions/107",
    "html_url": "https://conyac.cc/questions/107",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:31:49.000+09:00",
      "updated_at": "2014-06-10T10:31:49.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"
    }
  }
}

期限切れ(全question_bodyがexpire)

{
  "id": 4,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "simple_question.all_expired",
  "created_at": "2014-06-10T10:31:55.000+09:00",
  "retry_count": 1,
  "question": {
    "id": 106,
    "description": null,
    "user_id": 107,
    "parent_id": null,
    "type_id": 1,
    "published_scope": 2,
    "expires_at": "2014-06-09T10:31:55.000+09:00",
    "views_count": 0,
    "letter_count": 12,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 5,
    "status_text": "Expired",
    "published_at": "2014-06-10T10:32:55.000+09:00",
    "translated_at": null,
    "created_at": "2014-06-10T10:31:55.000+09:00",
    "updated_at": "2014-06-10T10:31:55.000+09:00",
    "tag_text": null,
    "draft_question_id": null,
    "first_body": "hoge",
    "native": false,
    "translations_count": 0,
    "working_translations_count": 0,
    "individual": false,
    "progress_rate": 0,
    "organization_id": 4,
    "escape_text": true,
    "text_format": 1,
    "custom_field": "test1",
    "cancelable": false,
    "listing?": false,
    "total_point": 800,
    "question_bodies": [
      {
        "id": 1029341676,
        "question_id": 106,
        "display_order": 1,
        "body": "hoge",
        "translated_at": null,
        "letter_count": 4,
        "translations_count": 0,
        "created_at": "2014-06-10T10:31:55.000+09:00",
        "updated_at": "2014-06-10T10:31:55.000+09:00",
        "translations": [

        ]
      },
      {
        "id": 1029341677,
        "question_id": 106,
        "display_order": 2,
        "body": "hoge<a href='/'>{{{{hoge}}}</a>",
        "translated_at": null,
        "letter_count": 8,
        "translations_count": 0,
        "created_at": "2014-06-10T10:31:55.000+09:00",
        "updated_at": "2014-06-10T10:31:55.000+09:00",
        "translations": [

        ]
      }
    ],
    "url": "https://biz.conyac.cc/api/v1/simple/questions/106",
    "html_url": "https://conyac.cc/questions/106",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:31:49.000+09:00",
      "updated_at": "2014-06-10T10:31:49.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"
    }
  }
}

一部のquestion_bodyがexpire

{
  "id": 14,
  "action_user_id": 107,
  "application_id": 1,
  "organization_id": 4,
  "action_organization_id": 4,
  "type": "simple_question.expired",
  "created_at": "2014-06-10T10:32:33.000+09:00",
  "retry_count": 0,
  "question": {
    "id": 108,
    "description": null,
    "user_id": 107,
    "parent_id": null,
    "type_id": 1,
    "published_scope": 2,
    "expires_at": "2014-06-10T10:32:33.000+09:00",
    "views_count": 1,
    "letter_count": 12,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 9,
    "status_text": "Some Expired",
    "published_at": "2014-06-10T10:33:24.000+09:00",
    "translated_at": null,
    "created_at": "2014-06-10T10:32:24.000+09:00",
    "updated_at": "2014-06-10T10:32:25.000+09:00",
    "tag_text": null,
    "draft_question_id": null,
    "first_body": "hoge",
    "native": false,
    "translations_count": 1,
    "working_translations_count": 0,
    "individual": false,
    "progress_rate": 50,
    "organization_id": 4,
    "escape_text": true,
    "text_format": 1,
    "custom_field": "test1",
    "cancelable": false,
    "listing?": false,
    "total_point": 800,
    "question_bodies": [
      {
        "id": 1029341680,
        "question_id": 108,
        "display_order": 1,
        "body": "hoge",
        "translated_at": null,
        "letter_count": 4,
        "translations_count": 1,
        "created_at": "2014-06-10T10:32:24.000+09:00",
        "updated_at": "2014-06-10T10:32:33.000+09:00",
        "translations": [
          {
            "id": 1824432910,
            "question_id": 108,
            "question_body_id": 1029341680,
            "body": "hoge hoge hoge hoge hoge hoge hoge hoge hoge hoge ",
            "created_at": "2014-06-10T10:32:29.000+09:00",
            "updated_at": "2014-06-10T10:32:33.000+09:00",
            "user_id": 103,
            "trainee": false,
            "posted_at": "2014-06-10T10:32:32.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 103,
              "login": "testf14023639060396569",
              "created_at": "2014-06-10T10:31:46.000+09:00",
              "updated_at": "2014-06-10T10:32:27.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/fcc52ba025f2f213479020731e4622b7.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2014-06-10T10:32:33.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Standard",
              "rate": 100
            }
          }
        ]
      },
      {
        "id": 1029341681,
        "question_id": 108,
        "display_order": 2,
        "body": "hoge<a href='/'>{{{{hoge}}}</a>",
        "translated_at": null,
        "letter_count": 8,
        "translations_count": 0,
        "created_at": "2014-06-10T10:32:24.000+09:00",
        "updated_at": "2014-06-10T10:32:33.000+09:00",
        "translations": [

        ]
      }
    ],
    "url": "https://biz.conyac.cc/api/v1/simple/questions/108",
    "html_url": "https://conyac.cc/questions/108",
    "user": {
      "id": 107,
      "login": "test10",
      "created_at": "2014-06-10T10:31:49.000+09:00",
      "updated_at": "2014-06-10T10:31:49.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"
    }
  }
}

フィードバック

全部のquestion_bodyに二つ翻訳がついた。

{
  "id": 768,
  "action_user_id": 7927,
  "application_id": 69,
  "organization_id": 785,
  "action_organization_id": 785,
  "type": "simple_question.feedback",
  "created_at": "2015-05-15 17:37:50 +0900",
  "retry_count": 1,
  "question": {
    "id": 545,
    "description": null,
    "user_id": 7927,
    "parent_id": null,
    "type_id": 1,
    "published_scope": 2,
    "expires_at": "2015-05-16T17:37:10.000+09:00",
    "views_count": 4,
    "letter_count": 12,
    "language_id": "ja",
    "translated_language_id": "en",
    "status": 10,
    "status_text": "Feedback",
    "published_at": "2015-05-15T17:36:18.000+09:00",
    "translated_at": "2015-05-15T17:37:40.000+09:00",
    "created_at": "2015-05-15T17:36:10.000+09:00",
    "updated_at": "2015-05-15T17:37:50.800+09:00",
    "tag_text": null,
    "draft_question_id": null,
    "first_body": "hoge",
    "native": false,
    "translations_count": 4,
    "working_translations_count": 0,
    "individual": false,
    "progress_rate": 100,
    "organization_id": 785,
    "escape_text": true,
    "text_format": 1,
    "custom_field": "test1",
    "cancelable": false,
    "listing?": false,
    "total_point": 1200,
    "question_bodies": [
      {
        "id": 1029342355,
        "question_id": 545,
        "display_order": 1,
        "body": "hoge",
        "translated_at": "2015-05-15T17:37:27.000+09:00",
        "letter_count": 4,
        "translations_count": 2,
        "created_at": "2015-05-15T17:36:14.000+09:00",
        "updated_at": "2015-05-15T17:37:50.000+09:00",
        "translations": [
          {
            "id": 1824433224,
            "question_id": 545,
            "question_body_id": 1029342355,
            "body": "hoge hoge hoge hoge hoge hoge hoge hoge hoge hoge ",
            "created_at": "2015-05-15T17:36:32.000+09:00",
            "updated_at": "2015-05-15T17:36:36.000+09:00",
            "user_id": 7854,
            "trainee": false,
            "posted_at": "2015-05-15T17:36:35.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 7854,
              "login": "testf1431678904308877",
              "created_at": "2015-05-15T17:35:04.000+09:00",
              "updated_at": "2015-05-15T17:36:26.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/dd552090d941f9e2e31d65e669e1e2a0.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2015-05-15T17:36:57.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Senior",
              "rate": 100
            }
          },
          {
            "id": 1824433226,
            "question_id": 545,
            "question_body_id": 1029342355,
            "body": "hoge hoge hoge hoge hoge hoge hoge hoge hoge hoge ",
            "created_at": "2015-05-15T17:37:22.000+09:00",
            "updated_at": "2015-05-15T17:37:27.000+09:00",
            "user_id": 7868,
            "trainee": false,
            "posted_at": "2015-05-15T17:37:27.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 7868,
              "login": "testf14316789094004521",
              "created_at": "2015-05-15T17:35:09.000+09:00",
              "updated_at": "2015-05-15T17:37:17.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/f0b2815d872339f4de320c7988b52753.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2015-05-15T17:37:40.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Senior",
              "rate": 100
            }
          }
        ]
      },
      {
        "id": 1029342356,
        "question_id": 545,
        "display_order": 2,
        "body": "hoge<a href='/'>{{{{hoge}}}</a>",
        "translated_at": "2015-05-15T17:37:40.000+09:00",
        "letter_count": 8,
        "translations_count": 2,
        "created_at": "2015-05-15T17:36:14.000+09:00",
        "updated_at": "2015-05-15T17:37:50.000+09:00",
        "translations": [
          {
            "id": 1824433225,
            "question_id": 545,
            "question_body_id": 1029342356,
            "body": "hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>",
            "created_at": "2015-05-15T17:36:43.000+09:00",
            "updated_at": "2015-05-15T17:36:48.000+09:00",
            "user_id": 7854,
            "trainee": false,
            "posted_at": "2015-05-15T17:36:48.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 7854,
              "login": "testf1431678904308877",
              "created_at": "2015-05-15T17:35:04.000+09:00",
              "updated_at": "2015-05-15T17:36:26.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/dd552090d941f9e2e31d65e669e1e2a0.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2015-05-15T17:36:57.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Senior",
              "rate": 100
            }
          },
          {
            "id": 1824433227,
            "question_id": 545,
            "question_body_id": 1029342356,
            "body": "hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>hoge <a href='/'> { {{{hoge}}} </a>",
            "created_at": "2015-05-15T17:37:34.000+09:00",
            "updated_at": "2015-05-15T17:37:40.000+09:00",
            "user_id": 7868,
            "trainee": false,
            "posted_at": "2015-05-15T17:37:40.000+09:00",
            "comments_count": 0,
            "user": {
              "id": 7868,
              "login": "testf14316789094004521",
              "created_at": "2015-05-15T17:35:09.000+09:00",
              "updated_at": "2015-05-15T17:37:17.000+09:00",
              "locale": "en",
              "picture_url": "https://secure.gravatar.com/avatar/f0b2815d872339f4de320c7988b52753.png?d=identicon&r=PG&s=48",
              "translator": true,
              "native_language": null,
              "last_accessed_at": "2015-05-15T17:37:40.000+09:00",
              "online_status": 1,
              "online_status_text": "Online",
              "grade_text": "Senior",
              "rate": 100
            }
          }
        ]
      }
    ],
    "url": "https://biz.conyac.cc/api/v1/simple/questions/545",
    "html_url": "https://conyac.cc/questions/545",
    "user": {
      "id": 7927,
      "login": "test10",
      "created_at": "2015-05-15T17:35:39.000+09:00",
      "updated_at": "2015-05-15T17:35:39.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"
    }
  }
}