update_column_color
Change the color of a specified column in a Basecamp project using a hex color code. Input project ID, column ID, and desired color to update the column's appearance for better organization and visual clarity.
Instructions
Update a column color
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | Yes | The hex color code (e.g., #FF0000) | |
column_id | Yes | The column ID | |
project_id | Yes | The project ID |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "The hex color code (e.g., #FF0000)",
"type": "string"
},
"column_id": {
"description": "The column ID",
"type": "string"
},
"project_id": {
"description": "The project ID",
"type": "string"
}
},
"required": [
"project_id",
"column_id",
"color"
],
"type": "object"
}