---
title: "Create Edge Note"
method: POST
path: "/api/v1/parts/{part_id}/edge-notes"
tags: ["part_annotations"]
---

# Create Edge Note

`POST /api/v1/parts/{part_id}/edge-notes`

Add a manufacturing note to an edge.

## Path parameters

- `part_id` string, uuid, required

## Request body

- EdgeNoteCreate — Payload for ``POST /parts/{part_id}/edge-notes``.
  - `edge_id` string, required — Topology edge ID (e.g. ``edge_17``).
  - `note_text` string, required
  - `note_type` 'general' | 'weld'
  - `weld_process` 'tig' | 'mig' | 'spot' | 'laser' | 'other', nullable — Required when note_type='weld'. Ignored otherwise.

## Response `201`

Successful Response

- EdgeNoteRead — Response projection for an edge note OutcomeEvent.
  - `id` string, uuid, required
  - `part_id` string, uuid, required
  - `cad_file_version_id` string, uuid, nullable, required
  - `edge_id` string, required
  - `note_text` string, required
  - `note_type` string, required
  - `weld_process` string, nullable, required
  - `state` string, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, nullable, 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)
