GET
/
v1
/
action-items
curl -G https://api.mavioapp.com/v1/action-items \
  -H "Authorization: Bearer mvo_live_abc123" \
  -d status=pending \
  -d priority=high \
  -d sort=due_date \
  -d order=asc
{
  "data": [
    {
      "id": "act_p6q7r8",
      "title": "Complete Stripe payment integration testing",
      "description": "Test the full payment flow in Stripe sandbox including successful charges, declined cards, and refund processing.",
      "status": "pending",
      "priority": "high",
      "assignee": {
        "id": "prt_g7h8i9",
        "name": "Priya Patel",
        "email": "priya@example.com"
      },
      "due_date": "2026-04-11",
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "meeting_title": "Weekly Product Sync",
      "source_segment_id": "seg_003",
      "completed_at": null,
      "created_at": "2026-04-10T14:51:44Z",
      "updated_at": "2026-04-10T14:51:44Z"
    },
    {
      "id": "act_s9t0u1",
      "title": "Fix checkout page crash on Safari (BUG-442)",
      "description": "Safari 17.4 crashes on the checkout page when the user clicks the payment button. Likely related to the WebKit animation bug.",
      "status": "pending",
      "priority": "high",
      "assignee": {
        "id": "prt_d4e5f6",
        "name": "James Rodriguez",
        "email": "james@example.com"
      },
      "due_date": "2026-04-14",
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "meeting_title": "Weekly Product Sync",
      "source_segment_id": "seg_017",
      "completed_at": null,
      "created_at": "2026-04-10T14:51:44Z",
      "updated_at": "2026-04-10T14:51:44Z"
    }
  ],
  "pagination": {
    "total": 8,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}
Returns action items extracted from your meetings. Action items are automatically created when a meeting summary is generated and can be filtered by status, assignee, priority, or meeting.
limit
integer
default:"20"
Number of action items to return. Between 1 and 100.
offset
integer
default:"0"
Number of action items to skip for pagination.
status
string
Filter by status. One of pending, in_progress, or completed.
assignee
string
Filter by assignee name (partial match supported) or participant ID.
meeting_id
string
Return only action items from a specific meeting.
priority
string
Filter by priority level. One of high, medium, or low.
due_before
string
Return action items due on or before this date. ISO 8601 date format (e.g., 2026-04-15).
due_after
string
Return action items due on or after this date. ISO 8601 date format.
sort
string
default:"created_at"
Sort field. One of created_at, due_date, or priority.
order
string
default:"desc"
Sort order. One of asc or desc.

Response

data
array
An array of action item objects.
pagination
object
Pagination metadata.
curl -G https://api.mavioapp.com/v1/action-items \
  -H "Authorization: Bearer mvo_live_abc123" \
  -d status=pending \
  -d priority=high \
  -d sort=due_date \
  -d order=asc
{
  "data": [
    {
      "id": "act_p6q7r8",
      "title": "Complete Stripe payment integration testing",
      "description": "Test the full payment flow in Stripe sandbox including successful charges, declined cards, and refund processing.",
      "status": "pending",
      "priority": "high",
      "assignee": {
        "id": "prt_g7h8i9",
        "name": "Priya Patel",
        "email": "priya@example.com"
      },
      "due_date": "2026-04-11",
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "meeting_title": "Weekly Product Sync",
      "source_segment_id": "seg_003",
      "completed_at": null,
      "created_at": "2026-04-10T14:51:44Z",
      "updated_at": "2026-04-10T14:51:44Z"
    },
    {
      "id": "act_s9t0u1",
      "title": "Fix checkout page crash on Safari (BUG-442)",
      "description": "Safari 17.4 crashes on the checkout page when the user clicks the payment button. Likely related to the WebKit animation bug.",
      "status": "pending",
      "priority": "high",
      "assignee": {
        "id": "prt_d4e5f6",
        "name": "James Rodriguez",
        "email": "james@example.com"
      },
      "due_date": "2026-04-14",
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "meeting_title": "Weekly Product Sync",
      "source_segment_id": "seg_017",
      "completed_at": null,
      "created_at": "2026-04-10T14:51:44Z",
      "updated_at": "2026-04-10T14:51:44Z"
    }
  ],
  "pagination": {
    "total": 8,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}