ApplicationEvent(アプリケーションイベント)

アプリケーションイベントの詳細

Resource URL

GET /api/v1/my/application_events/:id

Example Response

$ curl -i -H "Accept: application/json" -H "Content-type: application/json" -X GET https://biz.conyac.cc/api/v1/my/application_events/14?access_token=48c8a5caa45b12f706f297626a589096b3f01287e73b17d1a6201063552b30c6 
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
  "success": true,
  "message": "Event is found",
  "event": {
    "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"
      }
    }
  }
}

アプリケーションイベントの一覧取得

Resource URL

GET  /api/v1/my/application_events/

Request Parameters

  • since
    指定したアプリケーションイベントのIDより大きいイベントのみに絞り込み。数字
  • order
    ソート順
    • id_desc idの降順。 default
    • id_asc idの昇順

Example Response

$ curl -i -H "Accept: application/json" -H "Content-type: application/json" -X GET https://biz.conyac.cc/api/v1/my/application_events?access_token=48c8a5caa45b12f706f297626a589096b3f01287e73b17d1a6201063552b30c6 
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
  "success": true,
  "message": "Event is found",
  "page": 1,
  "per_page": 30,
  "total_pages": 1,
  "total_count": 14,
  "events": [
    {
      "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"
        }
      }
    },
    {
      "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
        }
      }
    },
    {
      "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": 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"
        }
      }
    },
    {
      "id": 10,
      "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: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": 8,
        "status_text": "Translated",
        "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:32:09.000+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": 99,
        "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/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"
        }
      },
      "translation": {
        "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.108+09:00",
        "user_id": 104,
        "trainee": false,
        "posted_at": "2014-06-10T10:32:23.098+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": 9,
      "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:17.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": 3,
        "letter_count": 12,
        "language_id": "ja",
        "translated_language_id": "en",
        "status": 8,
        "status_text": "Translated",
        "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:32:09.000+09:00",
        "tag_text": null,
        "draft_question_id": null,
        "first_body": "hoge",
        "native": false,
        "translations_count": 3,
        "working_translations_count": 0,
        "individual": false,
        "progress_rate": 99,
        "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/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"
        }
      },
      "translation": {
        "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.476+09:00",
        "user_id": 104,
        "trainee": false,
        "posted_at": "2014-06-10T10:32:17.469+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:17.000+09:00",
          "online_status": 1,
          "online_status_text": "Online",
          "grade_text": "Standard",
          "rate": 100
        }
      }
    },
    {
      "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": 7,
      "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: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,
        "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"
        }
      },
      "translation": {
        "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.514+09:00",
        "user_id": 103,
        "trainee": false,
        "posted_at": "2014-06-10T10:32:09.508+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": 6,
      "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:03.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": 1,
        "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": 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/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"
        }
      },
      "translation": {
        "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.764+09:00",
        "user_id": 103,
        "trainee": false,
        "posted_at": "2014-06-10T10:32:03.758+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:03.000+09:00",
          "online_status": 1,
          "online_status_text": "Online",
          "grade_text": "Standard",
          "rate": 100
        }
      }
    },
    {
      "id": 5,
      "action_user_id": 107,
      "application_id": 1,
      "organization_id": 4,
      "action_organization_id": 4,
      "type": "simple_question.created",
      "created_at": "2014-06-10T10:31:55.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.752+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.752+09:00",
        "translated_at": null,
        "created_at": "2014-06-10T10:31:55.757+09:00",
        "updated_at": "2014-06-10T10:31:55.757+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": 1029341678,
            "question_id": 107,
            "display_order": 1,
            "body": "hoge",
            "translated_at": null,
            "letter_count": 4,
            "translations_count": 0,
            "created_at": "2014-06-10T10:31:55.759+09:00",
            "updated_at": "2014-06-10T10:31:55.759+09:00"
          },
          {
            "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.762+09:00",
            "updated_at": "2014-06-10T10:31:55.762+09:00"
          }
        ],
        "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": 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"
        }
      }
    },
    {
      "id": 3,
      "action_user_id": 107,
      "application_id": 1,
      "organization_id": 4,
      "action_organization_id": 4,
      "type": "simple_question.created",
      "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-11T10:32:55.451+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.451+09:00",
        "translated_at": null,
        "created_at": "2014-06-10T10:31:55.456+09:00",
        "updated_at": "2014-06-10T10:31:55.456+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": 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.458+09:00",
            "updated_at": "2014-06-10T10:31:55.458+09:00"
          },
          {
            "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.461+09:00",
            "updated_at": "2014-06-10T10:31:55.461+09:00"
          }
        ],
        "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"
        }
      }
    },
    {
      "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": 1,
      "action_user_id": 107,
      "application_id": 1,
      "organization_id": 4,
      "action_organization_id": 4,
      "type": "simple_question.created",
      "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.221+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.221+09:00",
        "translated_at": null,
        "created_at": "2014-06-10T10:31:55.225+09:00",
        "updated_at": "2014-06-10T10:31:55.225+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.227+09:00",
            "updated_at": "2014-06-10T10:31:55.227+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.230+09:00",
            "updated_at": "2014-06-10T10:31:55.230+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"
        }
      }
    }
  ]
}