GET/project/{id}/start

Start a project

If you don't send auto_start parameter as 'on' while creating project, you need to start manually using this endpoint.

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 to be started

 

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": "",
    "auto_start": "off",
    "status": "pending",
    "created_at": {
      "sec": 1478199918,
      "usec": 828000
    },
    "updated_at": {
      "sec": 1478199918,
      "usec": 828000
    },
    "job_count": 0,
    "doc_count": 0,
    "price": 0,
    "word_count": 0,
    "vat": 0,
    "code": "PRJ_8d7d",
    "currency": "TRY",
    "ppw": 0.53,
    "id": "581b8a6e8ead0e90328b4570",
    "estimated_delivery_at": {
      "sec": 1478286580,
      "usec": 0
    }
  },
  "msg": "Project started 581b8a6e8ead0e90328b4570"
}