complete_card_step
Mark a specific step within a Basecamp project card as complete using project and step IDs, streamlining task management and progress tracking.
Instructions
Mark a card step as complete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The project ID | |
step_id | Yes | The step ID |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "The project ID",
"type": "string"
},
"step_id": {
"description": "The step ID",
"type": "string"
}
},
"required": [
"project_id",
"step_id"
],
"type": "object"
}