---
title: "Get details of job"
method: GET
path: "/jobs-api/v3/projects/{projectId}/jobs/{translationJobUid}"
tags: ["Jobs"]
---

# Get details of job

`GET /jobs-api/v3/projects/{projectId}/jobs/{translationJobUid}`

This gets the details of a job such as job name, description, due date, and reference number.

## Path parameters

- `projectId` string, required
- `translationJobUid` string, required

## Response `200`

OK

- DetailedJobResponse
  - `response` object, required
    - `code` 'SUCCESS', required — Indicates whether the response was successful or what error has occured.
    - `data` object
      - `callbackMethod` string — The http method (GET|POST) to use when Smartling invokes the callback URL upon job completion.
      - `callbackUrl` string — The callback URL to invoke when a job is completed.
      - `createdByUserUid` string — The userUid of whom created the job.
      - `createdDate` string, date-time — The UTC value of the date the job was created.
      - `description` string — The description of the job.
      - `dueDate` string, date-time — The UTC value of the due date for the job.
      - `firstCompletedDate` string, date-time — The UTC value of when the job was first completed.
      - `firstAuthorizedDate` string, date-time — The UTC value of when the job was first authorized.
      - `jobName` string — The name of the job.
      - `jobNumber` string — The account level unique number of the job. Consist of unique short prefix and sequence number.
      - `priority` integer — The account level unique integer value that shows the priority of the job compared to others.
      - `referenceNumber` string — Some text to reference job in external systems.
      - `jobStatus` 'DRAFT' | 'AWAITING_AUTHORIZATION' | 'IN_PROGRESS' | 'COMPLETED' | 'CANCELLED' | 'CLOSED' | 'DELETED' — The status of the job.
      - `lastCompletedDate` string, date-time — The UTC value of when the job was last completed.
      - `lastAuthorizedDate` string, date-time — The UTC value of when the job was last authorized.
      - `modifiedByUserUid` string — The userUid of whom last modified the job.
      - `modifiedDate` string, date-time — The UTC value of the date the job was modified.
      - `sourceFiles` SourceFile[] — List of source files of the job. Limited to **300** unordered entries. To get all of the job files use [List files within job](/#operation/getJobFilesList) API
        - `data` object
          - `name` string — File name
          - `uri` string — File uri
          - `fileUid` string — File uid
      - `targetLocaleIds` string[] — The array of localeIds for the job.
      - `customFields` CustomFieldBasicResponse[]
        - `fieldUid` string — Custom field unique identifier.
        - `fieldName` string — Custom field name.
        - `fieldValue` string — Custom field value.
      - `translationJobUid` string — The unique identifier created for the job.
      - `issues` IssuesCount
        - `sourceIssuesCount` integer — Source inssues count.
        - `translationIssuesCount` integer — Translation inssues count.

## Other responses

- `400` — Provided request parameters are invalid.
- `401` — Provided credentials are not valid.
- `404` — Job not found error
- `429` — Too many simultaneous API requests.
- `500` — Unexpected error

---

[API](https://skmtc.net/smartling/apis/smartling-rest-api-reference.md) · [All operations](https://skmtc.net/smartling/apis/smartling-rest-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smartling/smartling-rest-api-reference/revisions/2a73d11e9b98/schema)
