POST
/
v1
/
meetings
/
{id}
/
notes
curl -X POST https://api.mavioapp.com/v1/meetings/mtg_8f3k2j1m4n5p/notes \
  -H "Authorization: Bearer mvo_live_abc123" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Follow-up Items",
    "content": "## Action Required\n\n- Schedule design review for next Tuesday\n- Share updated wireframes with engineering team\n- Confirm vendor pricing by Friday"
  }'
{
  "id": "nte_p6q7r8s9t0",
  "meeting_id": "mtg_8f3k2j1m4n5p",
  "title": "Follow-up Items",
  "content": "## Action Required\n\n- Schedule design review for next Tuesday\n- Share updated wireframes with engineering team\n- Confirm vendor pricing by Friday",
  "author": {
    "id": "usr_f6g7h8",
    "name": "Sarah Chen"
  },
  "created_at": "2026-04-14T09:45:00Z",
  "updated_at": "2026-04-14T09:45:00Z"
}
Creates a new note on a meeting. Notes support Markdown formatting and can be used to capture key decisions, follow-ups, or any additional context about the meeting.
id
string
required
The unique meeting identifier (e.g., mtg_8f3k2j1m4n5p).
content
string
required
The note content in Markdown format. Maximum 50,000 characters.
title
string
Optional title for the note. Maximum 200 characters. If omitted, the note is untitled.

Response

id
string
Unique note identifier (e.g., nte_p6q7r8s9t0).
meeting_id
string
The meeting this note is attached to.
title
string | null
The note title, or null if not provided.
content
string
The note content in Markdown format.
author
object
The authenticated user who created the note.
created_at
string
ISO 8601 timestamp when the note was created.
updated_at
string
ISO 8601 timestamp when the note was last modified.
curl -X POST https://api.mavioapp.com/v1/meetings/mtg_8f3k2j1m4n5p/notes \
  -H "Authorization: Bearer mvo_live_abc123" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Follow-up Items",
    "content": "## Action Required\n\n- Schedule design review for next Tuesday\n- Share updated wireframes with engineering team\n- Confirm vendor pricing by Friday"
  }'
{
  "id": "nte_p6q7r8s9t0",
  "meeting_id": "mtg_8f3k2j1m4n5p",
  "title": "Follow-up Items",
  "content": "## Action Required\n\n- Schedule design review for next Tuesday\n- Share updated wireframes with engineering team\n- Confirm vendor pricing by Friday",
  "author": {
    "id": "usr_f6g7h8",
    "name": "Sarah Chen"
  },
  "created_at": "2026-04-14T09:45:00Z",
  "updated_at": "2026-04-14T09:45:00Z"
}