Studio Handoff
Studio handoff is the hybrid flow where API-created jobs are reviewed in the web Studio.
When to use it
Use Studio handoff if you need a human-in-the-loop step before delivery.
Typical cases:
- legal document review
- complex OCR layouts
- strict compliance QA workflows
How to enable
Set retention=studio when creating the job.
curl -sS -X POST "https://api.redactpdf.ai/v1/jobs" \
-H "X-API-Key: YOUR_API_KEY" \
-F 'files=@/absolute/path/dossier.pdf;type=application/pdf' \
-F 'retention=studio'
Current status
- Retention mode is supported in the API contract.
- Deep-link return payloads for direct Studio navigation are planned.
Recommended implementation pattern
- Submit jobs via API.
- Poll until documents reach terminal states.
- Route flagged or high-risk documents into Studio review.
- Publish approved redacted outputs to your downstream system.