asana_get_project_hierarchy
Get the complete hierarchical structure of an Asana project, including its sections, tasks, and subtasks. Supports both manual and automatic pagination.
PAGINATION GUIDE:
1. Get all data at once: Use auto_paginate=true
2. Manual pagination: First request with limit=N, then use the returned 'next_offset' tokens in subsequent requests
3. Tips for large projects: Specify only needed fields, set include_subtasks=false if subtasks aren't needed
EXAMPLES:
- For all data: {project_id:"123", auto_paginate:true}
- For first page: {project_id:"123", limit:10}
- For next page: {project_id:"123", limit:10, offset:"eyJ0a..."}
- For deep subtasks: {project_id:"123", include_subtasks:true, max_subtask_depth:3}
Note: offset must be a token from previous response (section.pagination_info.next_offset)