asana_create_project_status
Create project status updates in Asana with text content, color coding, and optional HTML formatting to track progress and communicate updates.
Instructions
Create a new status update for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | The color of the status (green, yellow, red) | |
html_text | No | HTML formatted text for the status update | |
opt_fields | No | Comma-separated list of optional fields to include | |
project_gid | Yes | The project GID to create the status for | |
text | Yes | The text content of the status update | |
title | No | The title of the status update |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "The color of the status (green, yellow, red)",
"enum": [
"green",
"yellow",
"red"
],
"type": "string"
},
"html_text": {
"description": "HTML formatted text for the status update",
"type": "string"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"project_gid": {
"description": "The project GID to create the status for",
"type": "string"
},
"text": {
"description": "The text content of the status update",
"type": "string"
},
"title": {
"description": "The title of the status update",
"type": "string"
}
},
"required": [
"project_gid",
"text"
],
"type": "object"
}