get_cards
Retrieve all cards from a specific column in Basecamp by providing the project ID and column ID. This tool supports project management and task tracking through Basecamp integration.
Instructions
Get all cards in a column
Input Schema
Name | Required | Description | Default |
---|---|---|---|
column_id | Yes | The column ID | |
project_id | Yes | The project ID |
Input Schema (JSON Schema)
{
"properties": {
"column_id": {
"description": "The column ID",
"type": "string"
},
"project_id": {
"description": "The project ID",
"type": "string"
}
},
"required": [
"project_id",
"column_id"
],
"type": "object"
}