GET/project/{id}/jobs

Get translation jobs belong to the project

Get all translation jobs under a project.

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

offset:
required
integer

Get results starting from offset

limit:
required
integer

Limit results to limit

 

Example Response


{
  "status": "success",
  "code": 200,
  "jobs": [
    {
      "id": "58149b118ead0e48088b457a"
    },
    {
      "id": "58149b118ead0e48088b457b"
    },
    {
      "id": "58149b118ead0e48088b457c"
    }
  ],
  "msg": "Jobs under project 581492a28ead0e4b088b4567"
}