PATCH
/
v1
/
notes
/
{id}
curl -X PATCH https://api.mavioapp.com/v1/notes/nte_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Key Decisions (Updated)",
    "content": "## Decisions Made\n\n- Launch date moved to April 22nd\n- Stripe integration prioritized\n- QA sprint starts Monday\n- Added staging deployment requirement"
  }'
{
  "id": "nte_a1b2c3d4e5",
  "meeting_id": "mtg_8f3k2j1m4n5p",
  "title": "Key Decisions (Updated)",
  "content": "## Decisions Made\n\n- Launch date moved to April 22nd\n- Stripe integration prioritized\n- QA sprint starts Monday\n- Added staging deployment requirement",
  "author": {
    "id": "usr_f6g7h8",
    "name": "Sarah Chen"
  },
  "created_at": "2026-04-10T15:02:00Z",
  "updated_at": "2026-04-14T10:12:33Z"
}
Updates a note. Only the fields you include in the request body are modified; omitted fields remain unchanged. You can only update notes that you created.
id
string
required
The unique note identifier (e.g., nte_a1b2c3d4e5).
title
string
Updated title for the note. Maximum 200 characters. Pass null to remove the title.
content
string
Updated note content in Markdown format. Maximum 50,000 characters.

Response

id
string
Unique note identifier.
meeting_id
string
The meeting this note is attached to.
title
string | null
The updated note title.
content
string
The updated note content.
author
object
The user who created the note.
created_at
string
ISO 8601 timestamp when the note was created.
updated_at
string
ISO 8601 timestamp reflecting the latest update.
curl -X PATCH https://api.mavioapp.com/v1/notes/nte_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Key Decisions (Updated)",
    "content": "## Decisions Made\n\n- Launch date moved to April 22nd\n- Stripe integration prioritized\n- QA sprint starts Monday\n- Added staging deployment requirement"
  }'
{
  "id": "nte_a1b2c3d4e5",
  "meeting_id": "mtg_8f3k2j1m4n5p",
  "title": "Key Decisions (Updated)",
  "content": "## Decisions Made\n\n- Launch date moved to April 22nd\n- Stripe integration prioritized\n- QA sprint starts Monday\n- Added staging deployment requirement",
  "author": {
    "id": "usr_f6g7h8",
    "name": "Sarah Chen"
  },
  "created_at": "2026-04-10T15:02:00Z",
  "updated_at": "2026-04-14T10:12:33Z"
}