GET
/
v2
/
jobs
Retrieve all Jobs
curl --request GET \
  --url https://api.lilt.com/v2/jobs
[
  {
    "name": "My New Job",
    "creationStatus": "COMPLETE",
    "deliveredAt": "2021-06-03T13:43:00Z",
    "status": "active",
    "due": "2021-06-03T13:43:00Z",
    "id": 241,
    "isProcessing": 0,
    "stats": {
      "exactWords": 0,
      "fuzzyWords": 0,
      "newWords": 0,
      "numDeliveredProjects": 0,
      "numLanguagePairs": 0,
      "numProjects": 0,
      "percentReviewed": 0,
      "percentTranslated": 0,
      "projects": [
        {
          "id": 123,
          "srcLang": "en",
          "srcLocale": "US",
          "trgLang": "fr",
          "trgLocale": "CA",
          "name": "My new project",
          "due": "2021-10-03T13:43:00.000Z",
          "isComplete": false,
          "isArchived": false,
          "state": "inProgress",
          "numSourceTokens": 2134,
          "createdAt": "2021-04-01T13:43:00.000Z",
          "updatedAt": "2021-06-03T13:43:00.000Z",
          "isDeleted": false,
          "memoryId": 2134,
          "workflowStatus": "READY_TO_START",
          "workflowName": "Translate > Review > Analyst Review"
        }
      ],
      "sourceWords": 0,
      "uniqueLanguagePairs": 1,
      "uniqueLinguists": 1,
      "workflowStatus": "READY_TO_START"
    }
  }
]

Authorizations

key
string
query
required

Query Parameters

isArchived
boolean

Retrieves all jobs that are archived.

isDelivered
boolean

Retrieves all jobs that are delivered.

offset
integer

Return jobs starting at the offset row. If not given the default offset will be 0.

Required range: x >= 0
limit
integer

The maximum number of jobs to be returned. If not given the default limit will be 25.

Required range: x <= 50

Response

200
application/json

A list of Job objects.

The response is of type JobsResponse · object[].