---
title: "Retrieves the status of a content import job"
method: GET
path: "/api/v1/content/_import/{jobId}"
tags: ["Content Import", "Content"]
---

# Retrieves the status of a content import job

`GET /api/v1/content/_import/{jobId}`

Fetches the detailed current status of a specific content import job identified by its ID.

## Path parameters

- `jobId` string, uuid, required

## Response `200`

Successfully retrieved job status. The entity contains detailed information about the job.

- ResponseEntityJobView
  - `errors` ErrorEntity[]
    - `errorCode` string
    - `message` string
    - `fieldName` string
  - `entity` Job
    - `id` string
    - `queueName` string
    - `state` 'PENDING' | 'RUNNING' | 'SUCCESS' | 'FAILED' | 'FAILED_PERMANENTLY' | 'ABANDONED' | 'ABANDONED_PERMANENTLY' | 'CANCEL_REQUESTED' | 'CANCELLING' | 'CANCELED'
    - `executionNode` string
    - `createdAt` string, date-time
    - `startedAt` string, date-time
    - `updatedAt` string, date-time
    - `completedAt` string, date-time
    - `result` JobResult
      - `errorDetail` ErrorDetail
        - `message` string
        - `exceptionClass` string
        - `stackTrace` string
        - `timestamp` string, date-time
        - `processingStage` string
      - `metadata` object
    - `parameters` object
      - `empty` boolean
    - `retryCount` integer
    - `progress` number, float
  - `messages` MessageEntity[]
    - `message` string
  - `i18nMessagesMap` object
  - `permissions` string[]
  - `pagination` Pagination
    - `currentPage` integer
    - `perPage` integer
    - `totalEntries` integer

## Other responses

- `401` — Unauthorized: Invalid or missing user authentication.
- `403` — Forbidden: User does not have permissions to view the specified job.
- `404` — Not Found: Job with the specified ID could not be found.
- `500` — Internal Server Error: An unexpected error occurred while retrieving the job status.

---

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