GET/project/{id}

Get a project detail

Get detail of the project with given id

Parameters

Body JSON

token:
required
string

You need access token to call this endpoint. You can retrieve it by calling /auth/login endpoint. Tokens are expired in 24 hours for security reasons.

id:
required
string

Id of the project

 

Example Response


{
  "status": "success",
  "code": 200,
  "project": {
    "quality": "basic",
    "source_language_id": "tr",
    "target_language_ids": [
      "en",
      "fr",
      "it"
    ],
    "title": "My New Project",
    "expertise_id": "basic",
    "extras": "",
    "note": "",
    "callback_url": "",
    "product_url": "",
    "status": "new",
    "created_at": {
      "sec": 1477743266,
      "usec": 999000
    },
    "updated_at": {
      "sec": 1477743266,
      "usec": 999000
    },
    "job_count": 3,
    "price": 3.71,
    "word_count": 7,
    "vat": 0.6678,
    "code": "ORD854d",
    "currency": "TRY",
    "ppw": 0.53,
    "id": "581492a28ead0e4b088b4567"
  },
  "msg": "Project with id 581492a28ead0e4b088b4567"
}