ticktick_bulk_checkin_habits
Check in multiple habits simultaneously on TickTick by specifying habit IDs and a date. This tool streamlines habit tracking and productivity management for users.
Instructions
Check in multiple habits at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date for check-ins (YYYY-MM-DD), defaults to today | |
habit_ids | Yes | Array of habit IDs to check in |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date for check-ins (YYYY-MM-DD), defaults to today",
"type": "string"
},
"habit_ids": {
"description": "Array of habit IDs to check in",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"habit_ids"
],
"type": "object"
}