Question Object

Object that contains the information of the translation request

Attribute

Object of the client

  • id
    Unique request ID (int)
  • project_id
    Project ID (int)
  • user_id
    User ID of the user who created this question (int)
  • letter_count
    Number of characters (int)
  • status
    A number indicating the status of the request.
    • 0: Pending. Request is being published.
    • 1: Listing. Translator listing.
    • 2: Translating. Request is being translated.
    • 3: Canceled. Request has been cancelled by the requester.
    • 4: Completed. Request has been completed.
    • 5: Expired. Request was not completed by any translator and therefore it has been canceled.
    • 6: Feedback. This is the period after the request has been translated and where translators are adding additional fixes and improvements. This is changed to 4 (Completed) automatically and remains active for 24 hours after a translation was submitted.
  • total_point
    Points used for this request (int)
  • created_at
    Registration date
  • updated_at
    Last Modified
  • url
    URL of the project’s details acquired from Conyac API
  • html_url
    URL of the details of the User screen
  • language_id
    ID of the source language (string)
  • translated_language_id
    ID of the target language (string)

Optional

  • paragraphs
    The object(s) of the divided paragraphs
  • language
    Language object of the source language
  • translated_language
    Language object of the target language

Example

{
  "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": 0,
  "status_text": "pending",
  "total_point": 32,
  "created_at": "2014-06-10T10:32:50.000+09:00",
  "updated_at": "2014-06-10T10:32:50.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/6",
  "html_url": "https://conyac.cc/b/projects/3/questions/6",
  "cancelable": true,
  "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"
  },
  "translation": {
    "revision_number": 0,
    "submitted": false,
    "download_url": null,
    "downloadable": false,
    "submitted_at": null,
    "user_id": null,
    "url": null,
    "html_url": null
  }
}