move_column
Reposition a column within a Basecamp card table by specifying its project ID, card table ID, column ID, and new 1-based position.
Instructions
Move a column to a new position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card_table_id | Yes | The card table ID | |
column_id | Yes | The column ID | |
position | Yes | The new 1-based position | |
project_id | Yes | The project ID |
Input Schema (JSON Schema)
{
"properties": {
"card_table_id": {
"description": "The card table ID",
"type": "string"
},
"column_id": {
"description": "The column ID",
"type": "string"
},
"position": {
"description": "The new 1-based position",
"type": "number"
},
"project_id": {
"description": "The project ID",
"type": "string"
}
},
"required": [
"project_id",
"card_table_id",
"column_id",
"position"
],
"type": "object"
}