asana_update_project
Modify existing project details including name, status, dates, layout, members, and descriptions to keep project information current and organized.
Instructions
Update details of an existing project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID to update | |
| name | No | Updated name of the project | |
| public | No | Whether the project is public to the organization | |
| archived | No | Whether the project is archived | |
| color | No | Color of the project (light-green, light-orange, light-blue, etc.) | |
| members | No | Array of user GIDs that are members of this project | |
| followers | No | Array of user GIDs that are followers of this project | |
| project_brief | No | HTML-formatted string containing the description for the project brief | |
| layout | No | The layout of the project (board, list, timeline, or calendar) | |
| default_view | No | The default view of the project (list, board, calendar, timeline, or gantt) | |
| due_on | No | The date on which this project is due (YYYY-MM-DD format) | |
| start_on | No | The day on which work for this project begins (YYYY-MM-DD format) | |
| notes | No | Free-form textual information associated with the project | |
| html_notes | No | HTML-formatted notes for the project | |
| opt_fields | No | Comma-separated list of optional fields to include in the response |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Whether the project is archived",
"type": "boolean"
},
"color": {
"description": "Color of the project (light-green, light-orange, light-blue, etc.)",
"type": "string"
},
"default_view": {
"description": "The default view of the project (list, board, calendar, timeline, or gantt)",
"type": "string"
},
"due_on": {
"description": "The date on which this project is due (YYYY-MM-DD format)",
"type": "string"
},
"followers": {
"description": "Array of user GIDs that are followers of this project",
"items": {
"type": "string"
},
"type": "array"
},
"html_notes": {
"description": "HTML-formatted notes for the project",
"type": "string"
},
"layout": {
"description": "The layout of the project (board, list, timeline, or calendar)",
"type": "string"
},
"members": {
"description": "Array of user GIDs that are members of this project",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Updated name of the project",
"type": "string"
},
"notes": {
"description": "Free-form textual information associated with the project",
"type": "string"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include in the response",
"type": "string"
},
"project_brief": {
"description": "HTML-formatted string containing the description for the project brief",
"type": "string"
},
"project_id": {
"description": "The project ID to update",
"type": "string"
},
"public": {
"description": "Whether the project is public to the organization",
"type": "boolean"
},
"start_on": {
"description": "The day on which work for this project begins (YYYY-MM-DD format)",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}