move_card
Move a card to a different column within a project using the specified project, card, and destination column IDs, simplifying task organization and workflow management in Basecamp.
Instructions
Move a card to a new column
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card_id | Yes | The card ID | |
column_id | Yes | The destination column ID | |
project_id | Yes | The project ID |
Input Schema (JSON Schema)
{
"properties": {
"card_id": {
"description": "The card ID",
"type": "string"
},
"column_id": {
"description": "The destination column ID",
"type": "string"
},
"project_id": {
"description": "The project ID",
"type": "string"
}
},
"required": [
"project_id",
"card_id",
"column_id"
],
"type": "object"
}