---
title: "Set Student Exam Subject Transcript"
method: POST
path: "/student-exams/{exam_id}/set-subject-transcript"
tags: ["student-exams"]
---

# Set Student Exam Subject Transcript

`POST /student-exams/{exam_id}/set-subject-transcript`

Set the transcribed text of the exam subject and convert it to structured exercises.
This functions similarly to the teacher exam import functionality.

## Path parameters

- `exam_id` string, required

## Request body

- RoutersStudentExamsTranscriptRequest
  - `transcript` string, required

## Response `200`

Successful Response

- GetStudentExamResponse
  - `status` string, required
  - `exam` StudentExam, required — A model for storing an exam that the student creates and works on themselves. This is distinct from the teacher's exam model.
    - `_id` string
    - `user_id` string, required
    - `exam_title` string, required
    - `time_limit` string, required
    - `exam_subject_images` string[]
    - `exam_subject_transcribed` string
    - `exam_started_at` string, date-time, nullable
    - `exam_finished_at` string, date-time, nullable
    - `time_spent_seconds` integer, nullable
    - `student_work_images` string[]
    - `student_work_diagrams` string[]
    - `student_work_transcribed` string
    - `correction_transcribed` string
    - `performance` StudentExamPerformance
      - `total_questions` integer, required
      - `correct` integer, required
      - `partial` integer, required
      - `wrong` integer, required
    - `feedback` string, nullable
    - `structured_exercises` ExamExercise[]
      - `id` integer, required
      - `title` string, required
      - `content` string, required
      - `solution` string, nullable
      - `points` number
      - `figure_id` string, nullable
      - `solution_figure_id` string, nullable
      - `figure_content` string, nullable
      - `figure_solution` string, nullable
      - `preamble` string, nullable
      - `estimated_minutes` integer, nullable
    - `created_at` string, date-time
    - `updated_at` string, date-time, nullable
    - `is_finished` boolean

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-15** `2a0c1636fd3b` — 1 info
  - added the optional property `exam/structured_exercises/items/estimated_minutes` to the response with the `200` status
- **2026-09-09** `a5af9b3b34f7` — 1 info
  - added the optional property `exam/structured_exercises/items/preamble` to the response with the `200` status

[Change history](https://skmtc.dev/excellence-ai/apis/excellence-learning/changes/student-exams/:exam_id/set-subject-transcript/post.md)

---

[API](https://skmtc.dev/excellence-ai/apis/excellence-learning.md) · [All operations](https://skmtc.dev/excellence-ai/apis/excellence-learning/llms.txt) · [OpenAPI document](https://skmtc.dev/excellence-ai/apis/excellence-learning/revisions/2a0c1636fd3b?raw)
