---
title: "Create Project Comment"
method: POST
path: "/api/v1/admin/projects/{project_id}/comments"
tags: ["admin-projects"]
---

# Create Project Comment

`POST /api/v1/admin/projects/{project_id}/comments`

Create a comment on a project as an admin.

## Path parameters

- `project_id` string, uuid, required

## Request body

- ProjectCommentCreate — Create a new comment on a project.
  - `message` string, required
  - `is_internal` boolean — Admin-only internal note

## Response `201`

Successful Response

- ProjectCommentResponse — A single comment on a project.
  - `id` string, uuid, required
  - `project_id` string, uuid, required
  - `author_id` string, required
  - `author_type` string, required
  - `author_name` string, required
  - `message` string, required
  - `is_internal` boolean, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

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