Skip to main content

List Action Items

GET /v1/action-items
List all action items across your notes. Filter by status.
status
string
Filter: pending, completed, all (default all)
page
integer
Page number
per_page
integer
Items per page
Response
{
  "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.
status
string
Set to pending or completed
text
string
Updated text
due
string
Updated due date (ISO 8601 date)
Response
{
  "id": "ai_001",
  "text": "Send updated spec to Sarah",
  "status": "completed",
  "completed_at": "2026-06-16T10:00:00Z"
}