---
title: "Check issue import status"
method: GET
path: "/repositories/{workspace}/{repo_slug}/issues/import"
tags: ["Issue tracker"]
deprecated: true
---

# Check issue import status

`GET /repositories/{workspace}/{repo_slug}/issues/import`

> **Deprecated.**

When using GET, this endpoint reports the status of the current import task.

After the job has been scheduled, but before it starts executing, the endpoint
returns a 202 response with status `ACCEPTED`.

Once it starts running, it is a 202 response with status `STARTED` and progress filled.

After it is finished, it becomes a 200 response with status `SUCCESS` or `FAILURE`.

## Response `200`

Import job complete with either FAILURE or SUCCESS status

- IssueJobStatus — The status of an import or export job
  - `type` string
  - `status` 'ACCEPTED' | 'STARTED' | 'RUNNING' | 'FAILURE' — The status of the import/export job
  - `phase` string — The phase of the import/export job
  - `total` integer — The total number of issues being imported/exported
  - `count` integer — The total number of issues already imported/exported
  - `pct` number — The percentage of issues already imported/exported

## Other responses

- `202` — Import job started
- `401` — The request wasn't authenticated properly
- `403` — When the authenticated user does not have admin permission on the repo
- `404` — No export job has begun

---

[API](https://skmtc.net/atlassian/apis/bitbucket-api.md) · [All operations](https://skmtc.net/atlassian/apis/bitbucket-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlassian/bitbucket-api/versions/8c7911c0a910/schema)
