create_card
Generate a new card in a specific project column within Basecamp, including title, optional content, due date, and notifications. Manage task organization effectively.
Instructions
Create a new card in a column
Input Schema
Name | Required | Description | Default |
---|---|---|---|
column_id | Yes | The column ID | |
content | No | Optional card content/description | |
due_on | No | Optional due date (ISO 8601 format) | |
notify | No | Whether to notify assignees (default: false) | |
project_id | Yes | The project ID | |
title | Yes | The card title |
Input Schema (JSON Schema)
{
"properties": {
"column_id": {
"description": "The column ID",
"type": "string"
},
"content": {
"description": "Optional card content/description",
"type": "string"
},
"due_on": {
"description": "Optional due date (ISO 8601 format)",
"type": "string"
},
"notify": {
"description": "Whether to notify assignees (default: false)",
"type": "boolean"
},
"project_id": {
"description": "The project ID",
"type": "string"
},
"title": {
"description": "The card title",
"type": "string"
}
},
"required": [
"project_id",
"column_id",
"title"
],
"type": "object"
}