List Action Items
List all action items across your notes. Filter by status.
Filter: pending, completed, all (default all)
{
"data": [
{
"id": "ai_001",
"text": "Send updated spec to Sarah",
"assignee": "You",
"due": "2026-06-18",
"status": "pending",
"note_id": "note_abc123",
"created_at": "2026-06-15T14:30:00Z"
},
{
"id": "ai_002",
"text": "Schedule design review for Monday",
"assignee": "You",
"due": "2026-06-22",
"status": "pending",
"note_id": "note_def456",
"created_at": "2026-06-12T09:00:00Z"
}
],
"meta": { "page": 1, "per_page": 20, "total": 28 }
}
Update Action Item
PATCH /v1/action-items/:id
Update an action item — mark as completed, change text, or update the due date.
Set to pending or completed
Updated due date (ISO 8601 date)
{
"id": "ai_001",
"text": "Send updated spec to Sarah",
"status": "completed",
"completed_at": "2026-06-16T10:00:00Z"
}