---
title: "Submit Call Rating"
method: POST
path: "/call/sessions/{call_session_id}/rating"
tags: ["call", "calls"]
---

# Submit Call Rating

`POST /call/sessions/{call_session_id}/rating`

Store a post-call rating (stars and/or comment) for this call.

This is the durable store for AI (ChaCha) call ratings — they never touch
user_reviews. Human calls also rate the partner via /users/review; this
endpoint just adds the per-call technical rating + comment. Upserts per
(call_session, user) so a re-submit updates rather than duplicates.

Sync def on purpose: single-worker gamma — an async handler doing sync DB
work would block the event loop.

## Path parameters

- `call_session_id` string, required

## Headers

- `authorization` string, nullable

## Request body

- CallRatingRequest
  - `rating` integer, nullable
  - `technical_rating` integer, nullable
  - `comment` string, nullable
  - `language` string, nullable
  - `is_ai_call` boolean

## Response `200`

Successful Response

- unknown

## 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)
