---
title: "Create project note"
method: POST
path: "/projects/{project_id}/note"
tags: ["Project Notes"]
---

# Create project note

`POST /projects/{project_id}/note`

Creates the internal note for the project. Returns 422 if a note already exists - use PUT to update.

## Request body

- object
  - `comment_content` string, required — Rich-text body. HTML is accepted and sanitized.

## Response `201`

successfully created the project note

- object
  - `data` ProjectNote
    - `id` integer
    - `project_id` integer
    - `last_edited_by_id` integer — ID of the user who last edited the note
    - `comment_content` string — Rich-text body rendered as sanitized HTML
    - `comment_content_as_string` string — Plain-text version of the body, suitable for non-HTML clients
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `422` — project note already exists, or validation failed

---

[API](https://skmtc.net/gettruss/apis/api-v1.md) · [All operations](https://skmtc.net/gettruss/apis/api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gettruss/api-v1/versions/7c956b3d1bdf/schema)
