---
title: "Create a session note"
method: POST
path: "/v1/session_notes"
tags: ["sessions"]
---

# Create a session note

`POST /v1/session_notes`

Add a note annotation to a session. Each call appends a new note with an auto-generated UUIDv4 identifier, so multiple notes accumulate on the same session. Structured annotations, by contrast, are keyed by (name, session_id, identifier) — re-writing the same key overwrites the existing annotation, so to keep multiple structured annotations with the same name on a session you must supply distinct identifiers.

## Request body

- CreateSessionNoteRequestBody
  - `data` SessionNoteData, required
    - `session_id` string, required — Session ID
    - `note` string, required — The note text to add to the session

## Response `200`

Session note created successfully

- CreateSessionNoteResponseBody
  - `data` InsertedSessionAnnotation, required
    - `id` string, required — The ID of the inserted session annotation

## Other responses

- `403` — Forbidden
- `404` — Session not found
- `422` — Validation Error

## Changes

- **2026-04-29** `c81391216eb5` — 1 warning
  - removed the request property `data/identifier`

[Change history](https://skmtc.dev/arize-ai/apis/arize-phoenix-rest-api/changes/v1/session_notes/post.md)

---

[API](https://skmtc.dev/arize-ai/apis/arize-phoenix-rest-api.md) · [All operations](https://skmtc.dev/arize-ai/apis/arize-phoenix-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/arize-ai/arize-phoenix-rest-api/revisions/29fe492bf1e2/schema)
