---
title: "Submit Feedback"
method: POST
path: "/v1/omni-ai/messages/{message_id}/feedback"
tags: ["Omni AI"]
---

# Submit Feedback

`POST /v1/omni-ai/messages/{message_id}/feedback`

Submit feedback on a finalized assistant message.

Attaches a score and optional comment to a finalized assistant message.
Feedback is only valid for messages with role `ASSISTANT` that have
reached a terminal outcome.

## Path parameters

- `message_id` string, uuid, required

## Request body

- CreateFeedbackRequest
  - `account_id` integer, required — Account ID for the request
  - `comment` string — Optional feedback comment
  - `metadata` object, nullable — Optional metadata
  - `score` integer, required — Feedback score (-1, 0, +1 or 1-5)

## Response `200`

Feedback recorded

- object
  - `error` ApiError — A direct mapping of tonic::Status, for use in HTTP responses.
    - `code` integer, required — The error code is used to identify the nature of the error. It corresponds to an HTTP status code.
    - `details` object[]
    - `message` string, required — A human-readable message providing more details about the error.
  - `metadata` ResponseMetadata, required — Metadata for the response. This will always contain a request ID which can be used to identify the request to Clear Street for tracing, and optionally may include pagination data.
    - `next_page_token` string, byte, nullable — Base64URL-encoded pagination token
    - `page_number` integer, nullable — Pagination. Included if this was a GET (list) response
    - `previous_page_token` string, byte, nullable — Base64URL-encoded pagination token
    - `request_id` string, required — A unique ID for this request, generated upon ingestion of the request.
    - `total_items` integer, nullable — Total number of items available (not just in this page).
    - `total_pages` integer, nullable — Total number of pages available.
  - `data` CreateFeedbackResponse, required
    - `created_at` string, required
    - `feedback_id` string, uuid, nullable — When a null/undefined value is observed, it indicates that there is no available data.

## Other responses

- `400` — Invalid request
- `403` — Forbidden
- `422` — Malformed request payload
- `500` — Internal server error

---

[API](https://skmtc.net/clear-street/apis/clear-street-trading-api.md) · [All operations](https://skmtc.net/clear-street/apis/clear-street-trading-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clear-street/clear-street-trading-api/revisions/80e6fb2644e0/schema)
