v52

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-0393116227.2 KB
local-file-groups

Get chunk deletion job status

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

get/local-file-groups/{id}/chunk-deletions/{chunk_deletion_id}

Path parameters

idstring required

Source group ID

chunk_deletion_idstring required

Chunk deletion job id returned by startChunkDeletion

Response

Successful retrieval of chunk deletion job

idstring required

The id of the chunk deletion job

source_group_idstring 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_containsstring[] required

The substrings used to match chunk rows for deletion

creation_timeinteger

Unix timestamp when the job was created

start_timeinteger

Unix timestamp when the job started

end_timeinteger

Unix timestamp when the job finished

deleted_countinteger 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".