---
title: "Get job status"
method: GET
path: "/job/{jobId}"
tags: ["Documents"]
---

# Get job status

`GET /job/{jobId}`

Check the status of an async document creation job. Poll this endpoint after receiving a `jobId` from `POST /createDocument` with `async: true`.

Progress values: 10% (queued) → 20% (fetching data) → 30% (processing template) → 40% (generating PDF) → 100% (complete).

## Path parameters

- `jobId` string, required

## Response `200`

Job status retrieved

- JobStatus
  - `jobId` string
  - `status` 'waiting' | 'active' | 'completed' | 'failed' — Current job status.
  - `progress` integer — Progress percentage (10 → 20 → 30 → 40 → 100).
  - `createdAt` string, date-time
  - `processedOn` string, date-time — When processing started.
  - `finishedOn` string, date-time — When processing finished.
  - `result` DocumentCreationResponse
    - `message` string
    - `pdfUrl` string, uri — URL of the generated PDF.
    - `documentName` string — Name of the generated document.
    - `googleDocUrl` string, uri — URL of the saved Google Doc (if `saveGoogleDoc` is enabled).
    - `savePdfGoogleDriveUrl` string, uri — Google Drive URL of the saved PDF (if Drive saving is configured).
    - `savePdfGoogleDriveFileId` string — Google Drive file ID of the saved PDF.
    - `signingSessionId` string — E-signature session ID (if e-signing is enabled on the automation).
    - `signingStatus` 'created' | 'queued' — Status of the signing session creation.
    - `signingLinks` object[] — Signing links for each signer (if delivery method is `link`).
      - `signerIndex` integer
      - `email` string
      - `name` string
      - `signingUrl` string, uri
      - `status` string
  - `error` string — Error message (only present when status is `failed`).
  - `attempts` integer — Number of processing attempts.

## Other responses

- `404` — Resource not found

---

[API](https://skmtc.dev/docsautomator/apis/docsautomator-api.md) · [All operations](https://skmtc.dev/docsautomator/apis/docsautomator-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/docsautomator/docsautomator-api/revisions/3ec829ff5817/schema)
