asana_get_project_statuses
Retrieve all status updates for an Asana project to track progress, monitor milestones, and stay informed about project developments.
Instructions
Get all status updates for a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_gid | Yes | The project GID to get statuses for | |
| limit | No | Results per page (1-100) | |
| offset | No | Pagination offset token | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Results per page (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "Pagination offset token",
"type": "string"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"project_gid": {
"description": "The project GID to get statuses for",
"type": "string"
}
},
"required": [
"project_gid"
],
"type": "object"
}