v2

latestOpenAPI 3.0.02026-08-07103189636.5 KB
Jobs

Search for job

This searches for jobs based on hashcodes (string identifiers), fileUris, and translationJobUids. Will return max of 100 translation job list items.

post/jobs-api/v3/projects/{projectId}/jobs/search

Path parameters

projectIdstring required

A unique project identifier. This can be found in the Smartling Dashboard under Account Settings > API.

Request body

fileUrisstring[]

(Optional) The fileUris (file identifiers) used to search for jobs. Any job containing the specified fileUri will be returned.

hashcodesstring[]

(Optional) The hashcodes (string identifiers) used to search for jobs. Any job containing specified hashcodes will be returned.

translationJobUidsstring[]

(Optional) The translationJobUids (translation job identifiers) used to search for jobs. Any job containing the specified fileUri will be returned.

Response

OK

Example response

{
  "response": {
    "data": {
      "items": [
        {
          "createdDate": "2015-11-21T01:51:17.000Z",
          "dueDate": "2015-11-21T01:51:17.000Z",
          "jobNumber": "SMTL-123",
          "jobStatus": "DRAFT | AWAITING_AUTHORIZATION | IN_PROGRESS | COMPLETED | CANCELLED | CLOSED",
          "targetLocaleIds": [
            "de-DE"
          ],
          "referenceNumber": "CustomerReferenceNum1"
        }
      ]
    }
  }
}