---
title: "Post Review Action Endpoint"
method: POST
path: "/api/agent-chat/segments/{segment_id}/review"
tags: ["Agent Chat"]
---

# Post Review Action Endpoint

`POST /api/agent-chat/segments/{segment_id}/review`

Approve / reject / cancel-auto-approve the current review attempt.

* ``approve``           → transition segment → outreach, finalize row.
* ``reject``            → archive row with feedback, transition segment
                          → discovery, enqueue a re-run turn on the
                          latest session carrying the wrapped prompt.
                          At MAX_REJECTS the segment stays in review
                          with auto-approve disabled and no new turn is
                          kicked — the UI blocks further rejections.
* ``cancel_auto_approve`` → idempotent: freeze the countdown.

## Path parameters

- `segment_id` string, required

## Cookies

- `ex_access` string, nullable
- `ex_org` string, nullable

## Request body

- ReviewActionRequest
  - `action` 'approve' | 'reject' | 'cancel_auto_approve', required
  - `feedback` string, nullable

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

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