asana_get_multiple_tasks_by_gid
Retrieve detailed information for multiple Asana tasks using their global IDs, supporting up to 25 tasks per request with optional field selection.
Instructions
Get detailed information about multiple tasks by their GIDs (maximum 25 tasks)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_ids | Yes | Array or comma-separated string of task GIDs to retrieve (max 25) | |
| 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"
},
"task_ids": {
"description": "Array or comma-separated string of task GIDs to retrieve (max 25)",
"oneOf": [
{
"items": {
"type": "string"
},
"maxItems": 25,
"type": "array"
},
{
"description": "Comma-separated list of task GIDs (max 25)",
"type": "string"
}
]
}
},
"required": [
"task_ids"
],
"type": "object"
}