asana_get_project
Retrieve detailed project information from Asana using project ID, including optional fields for comprehensive project management and tracking.
Instructions
Get detailed information about a specific project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID to retrieve | |
| 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 retrieve",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}