What I’m trying to do
I want to programmatically retrieve the items that appear in a user’s Inbox > Activity feed — the same list you see when you click Inbox in the Asana sidebar.
What I’ve tried so far
- GET /tasks?assignee=me&assignee_status=inbox — Returns 200+ tasks (the full “Recently assigned” backlog), not the Inbox activity feed.
- Top-level /stories endpoint — Returns a 400 requiring a parent parameter. No way to query stories across tasks in a single call.
- /events endpoint — Requires a specific resource GID, so can’t be used as a starting point for discovery across a user’s activity.
- Audit log — Requires a service account token.
What’s not working / the gap
None of these map to what the Inbox > Activity view actually shows. Is there an endpoint or approach that exposes a user’s Inbox feed directly? Even a notifications or activity feed endpoint would solve it.