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

# Retrieves the status of a content import job

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

Fetches the current status of a content import job based on the provided job ID.

## Path parameters

- `jobId` string, required

## Response `200`

Successfully retrieved job status

- 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` — Invalid user authentication
- `403` — Forbidden due to insufficient permissions
- `404` — Job not found
- `500` — Internal server error

---

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