---
title: "Create Comment"
method: POST
path: "/comment"
tags: ["Comment"]
---

# Create Comment

`POST /comment`

Create a new comment

## Query parameters

- `select` string

## Request body

- object
  - `id` string, uuid — Comment ID
  - `created_at` string, timestamp with time zone — Comment creation date
  - `organisation_id` string, uuid — Organisation ID
  - `updated_at` string, timestamp with time zone — Latest update
  - `conversation_id` string, uuid — Conversation ID
  - `message_id` string, uuid, nullable — Message ID
  - `author_id` string, uuid, nullable — Author ID
  - `content` object, nullable — Content of comment
  - `text` string, text — Text content for the comment. Can be plain text or HTML.

## Response `200`

The updated Comment object

- Comment
  - `id` string, uuid — Comment ID
  - `created_at` string, timestamp with time zone — Comment creation date
  - `organisation_id` string, uuid — Organisation ID
  - `updated_at` string, timestamp with time zone — Latest update
  - `conversation_id` string, uuid — Conversation ID
  - `message_id` string, uuid, nullable — Message ID
  - `author_id` string, uuid, nullable — Author ID
  - `content` object, nullable — Content of comment

## Other responses

- `201` — The Comment was created
- `204` — No Content

---

[API](https://skmtc.dev/getmateo/apis/mateo-api.md) · [All operations](https://skmtc.dev/getmateo/apis/mateo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getmateo/mateo-api/revisions/22a9b3b009d1/schema)
