---
title: "Retrieve job status"
method: GET
path: "/jobs/status/{job_id}"
tags: ["Jobs"]
---

# Retrieve job status

`GET /jobs/status/{job_id}`

Retrieve the status of job execution.

## Path parameters

- `job_id` string, required

## Headers

- `Intercom-Version` '1.0' | '1.1' | '1.2' | '1.3' | '1.4' | '2.0' | '2.1' | '2.2' | '2.3' | '2.4' | '2.5' | '2.6' | '2.7' | '2.8' | '2.9' | '2.10' | '2.11' | '2.12' | '2.13' | '2.14' — Intercom API version.</br>By default, it's equal to the version set in the app package.

## Response `200`

Job execution status

- Jobs — Jobs are tasks that are processed asynchronously by the Intercom system after being enqueued via the API. This allows for efficient handling of operations that may take time to complete, such as data imports or exports. You can check the status of your jobs to monitor their progress and ensure they are completed successfully.
  - `type` 'job' — The type of the object
  - `id` string, required — The id of the job that's currently being processed or has completed.
  - `url` string — API endpoint URL to check the job status.
  - `status` 'pending' | 'success' | 'failed' — The status of the job execution.
  - `resource_type` string — The type of resource created during job execution.
  - `resource_id` string, nullable — The id of the resource created during job execution (e.g. ticket id)
  - `resource_url` string, nullable — The url of the resource created during job exeuction. Use this url to fetch the resource.

## Other responses

- `401` — Unauthorized
- `404` — Job not found

---

[API](https://skmtc.net/intercom/apis/intercom-api.md) · [All operations](https://skmtc.net/intercom/apis/intercom-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/intercom/intercom-api/revisions/9517e80f2642/schema)
