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
}
}
Retrieve a paginated list of action items across all meetings, with filters for status, assignee, priority, and meeting.
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
}
}
pending, in_progress, or completed.high, medium, or low.2026-04-15).created_at, due_date, or priority.asc or desc.Show Action item object
act_p6q7r8).pending, in_progress, or completed.high, medium, or low.2026-04-15). null if no due date was mentioned.null if not yet completed.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
}
}