---
title: "Requeue Ingest Jobs"
method: POST
path: "/ingest/requeue"
tags: ["Ingestion"]
---

# Requeue Ingest Jobs

`POST /ingest/requeue`

Requeue ingestion jobs for documents stuck in processing or marked as failed.

## Headers

- `authorization` string, nullable

## Request body

- RequeueIngestionRequest — Request payload for requeueing ingestion jobs.
  - `jobs` RequeueIngestionJob[] — Collection of jobs to requeue, each with optional ColPali override.
    - `external_id` string, required — External identifier of the document to requeue
    - `use_colpali` boolean, nullable — When provided, uses Morphik's finetuned ColPali style embeddings (recommended to be True for high quality retrieval).
  - `include_all` boolean — When true, requeue every accessible document whose status matches `statuses` (defaults to processing/failed).
  - `statuses` string[], nullable — Processing statuses to include when `include_all` is true. Defaults to ['processing', 'failed'].
  - `limit` integer, nullable — Maximum number of documents to auto-select from the provided statuses when include_all is true.

## Response `200`

Successful Response

- RequeueIngestionResponse — Response payload for requeueing ingestion jobs.
  - `results` RequeueIngestionResult[], required — Per-document outcomes
    - `external_id` string, required — Document external identifier
    - `status` string, required — Outcome status for this job
    - `message` string, nullable — Optional human-readable message describing the outcome

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/morphik-org/apis/fastapi.md) · [All operations](https://skmtc.net/morphik-org/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/morphik-org/fastapi/revisions/2d9291c3821d/schema)
