---
title: "GET /assistant/chat/{chat_uuid}/cancel/"
method: GET
path: "/assistant/chat/{chat_uuid}/cancel/"
tags: ["AI Assistant"]
---

# GET /assistant/chat/{chat_uuid}/cancel/

`GET /assistant/chat/{chat_uuid}/cancel/`

List all messages in the specified AI assistant chat.

## Path parameters

- `chat_uuid` string, uuid, required

## Response `200`

- AssistantChatMessages
  - `messages` AssistantMessage[], required
    - union
      - ChatTitleMessage
        - `type` string
        - `content` string, required — The chat title message content.
      - HumanMessage
        - `id` integer, required — The unique ID of the message.
        - `type` string
        - `content` string, required — The content of the human message.
        - `timestamp` string, date-time — The timestamp of the message.
      - AiMessage
        - `id` integer — The unique ID of the message.
        - `type` string
        - `content` string, required — The content of the AI message.
        - `timestamp` string, date-time — The timestamp of the message.
        - `sources` string[] — The list of relevant source URLs referenced in the knowledge. Can be empty or null.
        - `can_submit_feedback` boolean — Whether the user can submit feedback for this message. Only true for messages with an associated prediction.
        - `human_sentiment` union — The sentiment for the message, if it has been rated. * `LIKE` - LIKE * `DISLIKE` - DISLIKE
          - 'LIKE' | 'DISLIKE' — * `LIKE` - LIKE * `DISLIKE` - DISLIKE
          - unknown
      - AiThinking
        - `type` string
        - `content` string — The message to show while the AI is thinking
      - AiReasoning
        - `type` string
        - `content` string, required — The reasoning content of the AI message.
      - AiNavigation
        - `type` string
        - `location` object, required — The location to navigate to.
      - AiErrorMessage
        - `type` string
        - `code` string, required — A short error code that can be used to identify the error.
        - `content` string, required — The error message content.
      - AiStarted
        - `type` string
        - `message_id` string, required — The ID of the message being generated.
      - AiCancelled
        - `type` string
        - `message_id` string, required — The ID of the message that was cancelled.

## Other responses

- `400`

---

[API](https://skmtc.net/baserow/apis/baserow-api-spec.md) · [All operations](https://skmtc.net/baserow/apis/baserow-api-spec/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/baserow/baserow-api-spec/revisions/ea4a3480f8d3/schema)
