---
title: "Update Student Goals"
method: PUT
path: "/tutor/students/{student_id}/goals"
tags: ["tutor"]
---

# Update Student Goals

`PUT /tutor/students/{student_id}/goals`

Update learning goals for a specific student.
Only tutors can update goals.

## Path parameters

- `student_id` string, required

## Headers

- `authorization` string, nullable

## Request body

- LearningGoalsUpdate — Request schema for updating learning goals
  - `goals` LearningGoal[], required
    - `type` string, required
    - `description` string, required
    - `target_date` string, date-time, nullable
    - `progress_notes` string, nullable
    - `completed` boolean

## Response `200`

Successful Response

- LearningGoalsResponse — Response schema for learning goals
  - `student_id` string, uuid, required
  - `tutor_id` string, uuid, required
  - `goals` LearningGoal[], required
    - `type` string, required
    - `description` string, required
    - `target_date` string, date-time, nullable
    - `progress_notes` string, nullable
    - `completed` boolean
  - `last_updated` string, date-time, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/fluentea/apis/aurqa-language-learning-platform-refactored.md) · [All operations](https://skmtc.dev/fluentea/apis/aurqa-language-learning-platform-refactored/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fluentea/aurqa-language-learning-platform-refactored/revisions/45cbba31aa7d/schema)
