---
title: "Get chunk deletion job status"
method: GET
path: "/local-file-groups/{id}/chunk-deletions/{chunk_deletion_id}"
tags: ["local-file-groups"]
---

# Get chunk deletion job status

`GET /local-file-groups/{id}/chunk-deletions/{chunk_deletion_id}`

Returns the status of a chunk deletion job previously started for the source group. The status is synced with the underlying execution on read on a best-effort basis: a finished job is normally reported as terminal (success or failure) immediately, but if the live sync fails the status may lag until the periodic reconciliation.

Required roles: All

## Path parameters

- `id` string, required
- `chunk_deletion_id` string, required

## Response `200`

Successful retrieval of chunk deletion job

- ChunkDeletion
  - `id` string, required — The id of the chunk deletion job
  - `source_group_id` string, required — The ID of the source group whose chunks are being deleted
  - `status` 'unknown' | 'queued' | 'not_started' | 'managed' | 'starting' | 'started' | 'success' | 'failure' | 'canceling' | 'canceled' | 'deleting' | 'delete_job_failure', required — Job status
  - `text_contains` string[], required — The substrings used to match chunk rows for deletion
  - `creation_time` integer — Unix timestamp when the job was created
  - `start_time` integer — Unix timestamp when the job started
  - `end_time` integer — Unix timestamp when the job finished
  - `deleted_count` integer, required — Number of chunk rows deleted. Always present; meaningful only once the job has succeeded (status = success). Before then it is 0 (not yet determined), so callers must gate on status rather than treating 0 as "no chunks deleted".

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `500` — Internal Server Error

---

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