GET
/
v1
/
meetings
/
{id}
/
notes
curl -G https://api.mavioapp.com/v1/meetings/mtg_8f3k2j1m4n5p/notes \
  -H "Authorization: Bearer mvo_live_abc123" \
  -d limit=10
{
  "data": [
    {
      "id": "nte_a1b2c3d4e5",
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "title": "Key Decisions",
      "content": "## Decisions Made\n\n- Launch date confirmed for April 20th\n- Stripe integration will be prioritized over PayPal\n- QA sprint starts Monday",
      "author": {
        "id": "usr_f6g7h8",
        "name": "Sarah Chen"
      },
      "created_at": "2026-04-10T15:02:00Z",
      "updated_at": "2026-04-10T15:02:00Z"
    },
    {
      "id": "nte_f6g7h8i9j0",
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "title": null,
      "content": "Follow up with Priya on Stripe sandbox testing results by EOD tomorrow.",
      "author": {
        "id": "usr_k1l2m3",
        "name": "James Rodriguez"
      },
      "created_at": "2026-04-10T14:55:30Z",
      "updated_at": "2026-04-10T14:55:30Z"
    }
  ],
  "pagination": {
    "total": 2,
    "limit": 10,
    "offset": 0,
    "has_more": false
  }
}
Returns all notes associated with a meeting, ordered by creation date descending. Notes can be created manually by users or generated automatically from AI summaries.
id
string
required
The unique meeting identifier (e.g., mtg_8f3k2j1m4n5p).
limit
integer
default:"20"
Number of notes to return per page. Must be between 1 and 100.
offset
integer
default:"0"
Number of notes to skip for pagination.

Response

data
array
An array of note objects.
pagination
object
Pagination metadata.
curl -G https://api.mavioapp.com/v1/meetings/mtg_8f3k2j1m4n5p/notes \
  -H "Authorization: Bearer mvo_live_abc123" \
  -d limit=10
{
  "data": [
    {
      "id": "nte_a1b2c3d4e5",
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "title": "Key Decisions",
      "content": "## Decisions Made\n\n- Launch date confirmed for April 20th\n- Stripe integration will be prioritized over PayPal\n- QA sprint starts Monday",
      "author": {
        "id": "usr_f6g7h8",
        "name": "Sarah Chen"
      },
      "created_at": "2026-04-10T15:02:00Z",
      "updated_at": "2026-04-10T15:02:00Z"
    },
    {
      "id": "nte_f6g7h8i9j0",
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "title": null,
      "content": "Follow up with Priya on Stripe sandbox testing results by EOD tomorrow.",
      "author": {
        "id": "usr_k1l2m3",
        "name": "James Rodriguez"
      },
      "created_at": "2026-04-10T14:55:30Z",
      "updated_at": "2026-04-10T14:55:30Z"
    }
  ],
  "pagination": {
    "total": 2,
    "limit": 10,
    "offset": 0,
    "has_more": false
  }
}