---
title: "Create Feature Note"
method: POST
path: "/api/v1/notes/{project_id}/{feature_id}"
tags: ["notes"]
---

# Create Feature Note

`POST /api/v1/notes/{project_id}/{feature_id}`

Create a new note on a feature. One note per user per feature per source.

## Path parameters

- `feature_id` string, required

## Request body

- FeatureNoteContentRequest — Request schema for creating or updating a feature note.
  - `content` string, required
  - `source` string, nullable

## Response `200`

Successful Response

- FeatureNoteResponse — Response schema for a feature note.
  - `id` string, uuid, required
  - `feature_id` string, required
  - `project_id` string, uuid, required
  - `user_id` string, uuid, required
  - `content` string, required
  - `source` string, required
  - `author_name` string, nullable, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

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