How to Turn Completed Asana Tasks into an Executive Summary
Query completed Asana tasks by completed_at, map project sections to categories, and deliver clean stakeholder updates without manual copy-paste.
Soobrief Team — Product & Engineering, Sooapps ·
In short
Creating an executive summary from Asana requires querying tasks where `completed = true` filtered by the `completed_at` timestamp, mapping Asana Projects to product lines, and reading section headers for categorization. This converts raw project checklists into concise, outcome-oriented stakeholder reports.
Creating an executive summary from Asana requires querying tasks where completed = true filtered by the completed_at timestamp, mapping Asana Projects to product lines, and reading section headers for categorization. This converts raw project checklists into concise, outcome-oriented stakeholder reports.
Product leaders and executive stakeholders rarely have time to click through Asana boards and inspect individual tasks. They want a crisp, bulleted briefing of outcomes delivered this week.
1. The Core Asana Filter
Using the Asana Search API:
GET /api/1.0/workspaces/:workspace_gid/tasks/search?completed=true&completed_at.after=2026-09-03T00:00:00Z
Key fields to extract:
name: The deliverable headline.
completed_at: The precise moment of completion.
projects: Which product team owns the outcome.
memberships.section: The specific list section (e.g. "Shipped v1.2").
2. Transforming Task Titles into Executive Outcomes
Raw task names in Asana often sound like personal to-do notes (e.g. "Draft copy for pricing page modal"). The narrative layer rewrites these into stakeholder-ready impact statements:
- *Before:* "Draft copy for pricing page modal"
- *Executive Output:* "Published updated pricing modal to improve enterprise self-serve conversion."