create_column
Add a new column to a card table in Basecamp by specifying the project ID, card table ID, and column title. Simplify project organization and task management directly through API integration.
Instructions
Create a new column in a card table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card_table_id | Yes | The card table ID | |
project_id | Yes | The project ID | |
title | Yes | The column title |
Input Schema (JSON Schema)
{
"properties": {
"card_table_id": {
"description": "The card table ID",
"type": "string"
},
"project_id": {
"description": "The project ID",
"type": "string"
},
"title": {
"description": "The column title",
"type": "string"
}
},
"required": [
"project_id",
"card_table_id",
"title"
],
"type": "object"
}