---
title: "Answer Training Question"
method: POST
path: "/agent/training/questions/{question_id}/answer"
---

# Answer Training Question

`POST /agent/training/questions/{question_id}/answer`

Record the user's answer and kick off the integration session.

One transaction: answer + status flip + session + prefilled first
message + turn job become visible atomically. Ignore answers store
the reason and stop — no session.

## Path parameters

- `question_id` integer, required

## Headers

- `Authorization` string, nullable
- `X-User-Id` string, nullable

## Cookies

- `session_id` string, nullable

## Request body

- AnswerTrainingQuestionBody
  - `choice_idx` integer, nullable
  - `notes` string, nullable

## Response `200`

Successful Response

- AnswerTrainingQuestionResponse
  - `question` TrainingQuestionSchema, required
    - `id` integer, required
    - `report_id` integer, required
    - `status` 'open' | 'pending' | 'resolved' | 'ignored', required
    - `payload` TrainingQuestionPayload, required
      - `prompt` string, required
      - `description` string, required
      - `choices` TrainingChoice[], required
        - `title` string, required
        - `description` string, nullable
        - `is_ignore` boolean
        - `is_recommended` boolean
      - `impact` string, required
      - `evidence` string[], required
      - `change_target` string, required
    - `answered_choice_idx` integer, nullable
    - `answer_notes` string, nullable
    - `answered_by` integer, nullable
    - `answered_at` string, date-time, nullable
    - `integration_session_id` integer, nullable
    - `integration_session_status` 'idle' | 'turn_in_progress'
    - `resolution_notes` string, nullable
    - `resolved_at` string, date-time, nullable
  - `session_id` integer, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/runconverge/apis/fastapi.md) · [All operations](https://skmtc.dev/runconverge/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/runconverge/fastapi/revisions/1452e350bd1d/schema)
