asana_get_project_task_counts
Retrieve task counts for Asana projects to monitor progress and manage workloads by providing project IDs.
Instructions
Get the number of tasks in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID to get task counts for | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"project_id": {
"description": "The project ID to get task counts for",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}