get_columns
Retrieve all columns from a specified card table within a project using Basecamp 3 integration. Requires project ID and card table ID for targeted data access.
Instructions
Get all columns in a card table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card_table_id | Yes | The card table ID | |
project_id | Yes | The project ID |
Input Schema (JSON Schema)
{
"properties": {
"card_table_id": {
"description": "The card table ID",
"type": "string"
},
"project_id": {
"description": "The project ID",
"type": "string"
}
},
"required": [
"project_id",
"card_table_id"
],
"type": "object"
}