Retry File Processing
Retry File Processing
Manually trigger document processing for a file that has already been uploaded and classified
POST
Retry File Processing
Retry File Processing
Use this endpoint when a file is already uploaded, but the downstream processing step has not yet produced afile_reading.
Typical cases:
- retrying a stalled file
- re-queueing processing after operational issues
- manually nudging a file that was classified but never parsed into
file_reading
- upload file
- confirm upload
- automatic classification
- automatic processing into
file_reading
Headers
API key for authentication.
Organization UUID that owns the file.
Body
Use
PROCESS_DOCUMENT.Additional event detail payload.
File UUID to process.
Example
Response
true means the processing event was accepted and queued.
What Happens Next
After the event is accepted:- the processing pipeline runs asynchronously
- a
file_readingmay be created or updated - clients can poll
GET /v1/files/readings?file_id=<file-id>
Notes
- This endpoint does not return the
file_readingdirectly. - It only queues the processing event.
- If the file has not been classified yet, you may need classification first before processing succeeds.
- This endpoint can be safely treated as a retry operation for operational recovery.

