---
title: "Put Email Thread Review"
method: PUT
path: "/api/v1/email-threads/{email_thread_id}/review"
tags: ["email-thread-reviews"]
---

# Put Email Thread Review

`PUT /api/v1/email-threads/{email_thread_id}/review`

Save this reviewer's verdict and project it onto the thread.

## Path parameters

- `email_thread_id` string, uuid, required

## Request body

- EmailThreadReviewWrite — A reviewer's verdict. Both fields are required because the model makes them NOT NULL — a review without a verdict is not a review, and an outcome is what the thread's ``outcome`` column is projected from.
  - `verdict` 'good' | 'par' | 'bad', required — Reviewer's coarse verdict on the whole call (V0.5). The three values cover the spectrum without overclassifying: the agent nailed it, met the bar, or fell short. Annotations carry the signal — the verdict is a coarse summary only. See ``sync_review_to_findings.py`` for the uniform "verdict + 0 annotations → 0 findings" rule (intentional extension beyond the briefing's §9, which only guaranteed it for good/par; V0.5 extends it to bad so the sync function has one consistent rule).
  - `outcome` string, required

## Response `200`

Successful Response

- EmailThreadReviewRead
  - `id` string, uuid, required
  - `email_thread_id` string, uuid, required
  - `reviewer_user_id` string, uuid, required
  - `verdict` 'good' | 'par' | 'bad', required — Reviewer's coarse verdict on the whole call (V0.5). The three values cover the spectrum without overclassifying: the agent nailed it, met the bar, or fell short. Annotations carry the signal — the verdict is a coarse summary only. See ``sync_review_to_findings.py`` for the uniform "verdict + 0 annotations → 0 findings" rule (intentional extension beyond the briefing's §9, which only guaranteed it for good/par; V0.5 extends it to bad so the sync function has one consistent rule).
  - `outcome` string, required

## Other responses

- `404` — Email thread or review not found
- `422` — Validation Error

---

[API](https://skmtc.dev/getanana/apis/cleon-api.md) · [All operations](https://skmtc.dev/getanana/apis/cleon-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getanana/cleon-api/revisions/c0f54348e251/schema)
