TickTick icon

TickTick

Interact with TickTick tasks and projects

Task → Create

AI-generated

Overview

This node operation creates a new task in TickTick within a specified project. It supports multiple authentication methods and allows detailed task configuration, including title, due date, priority, subtasks, reminders, and more. This is useful for automating task creation in TickTick from workflows, such as adding tasks based on external triggers or data inputs.

Use Case Examples

  1. Creating a task with a title and due date in a specific project.
  2. Adding subtasks and setting task priority and reminders automatically.

Properties

Name Meaning
Authentication Selects the authentication method to use for TickTick API access.
Project The project in TickTick where the task will be created. Can be selected from a list or specified by ID.
Title The title of the task to be created.
JSON Parameters Toggle to specify additional task fields as raw JSON instead of using the UI fields.
Additional Fields (JSON) Raw JSON body for additional task fields to send directly to TickTick when JSON Parameters is enabled.
Additional Fields Collection of optional fields to further define the task, such as all-day flag, completed time, content, description, due date, subtasks, kind, priority, reminders, recurrence, sort order, start date, status, and time zone.

Output

JSON

  • id - The unique identifier of the created task.
  • title - The title of the created task.
  • projectId - The ID of the project where the task was created.
  • status - The status of the task (e.g., normal or completed).
  • dueDate - The due date of the task, if set.
  • priority - The priority level of the task.
  • items - List of subtasks included in the created task.

Dependencies

  • TickTick API (supports V1 and V2) with authentication via access token, email/password, or OAuth2

Troubleshooting

  • Ensure the selected authentication method is correctly configured and valid.
  • Verify the project ID or selection is correct and accessible by the authenticated user.
  • Check that required fields like Title are provided; missing required fields will cause errors.
  • If using JSON Parameters, ensure the JSON is valid and matches TickTick API expectations.
  • Common errors include authentication failures, invalid project ID, or malformed task data.

Links

  • TickTick API Documentation - Official API documentation for TickTick, useful for understanding task creation and available fields.

Discussion