update_column
Modify the title of a specific column within a Basecamp project by specifying the project ID, column ID, and the new title to ensure accurate project organization.
Instructions
Update a column title
Input Schema
Name | Required | Description | Default |
---|---|---|---|
column_id | Yes | The column ID | |
project_id | Yes | The project ID | |
title | Yes | The new column title |
Input Schema (JSON Schema)
{
"properties": {
"column_id": {
"description": "The column ID",
"type": "string"
},
"project_id": {
"description": "The project ID",
"type": "string"
},
"title": {
"description": "The new column title",
"type": "string"
}
},
"required": [
"project_id",
"column_id",
"title"
],
"type": "object"
}