TickTick icon

TickTick

Interact with TickTick tasks and projects

Task → List All

AI-generated

Overview

This node operation lists all tasks from TickTick, allowing users to retrieve a collection of tasks with optional filtering and limiting. It is useful for scenarios where you want to fetch multiple tasks for management, reporting, or synchronization purposes. For example, you can list all active tasks within a specific project or retrieve completed tasks for review.

Use Case Examples

  1. List all tasks with a limit of 50 results.
  2. Filter tasks by project ID to get tasks only from a specific project.
  3. Retrieve tasks filtered by their completion status (active, completed, or all).
  4. Include deleted tasks in the results if needed.

Properties

Name Meaning
Authentication Select the authentication method to use for accessing TickTick API (Access Token, Email/Password, or OAuth2).
Limit Maximum number of task results to return.
Filters Optional filters to narrow down the list of tasks.

Output

JSON

  • id - Unique identifier of the task.
  • title - Title or name of the task.
  • status - Completion status of the task (e.g., active, completed).
  • projectId - Identifier of the project the task belongs to.
  • dueDate - Due date of the task, if set.
  • createdTime - Timestamp when the task was created.
  • updatedTime - Timestamp when the task was last updated.

Dependencies

  • TickTick API authentication via Access Token, Email/Password session, or OAuth2.

Troubleshooting

  • Ensure the selected authentication method is correctly configured and valid.
  • Check that the project ID used in filters exists and is accessible by the authenticated user.
  • If no tasks are returned, verify the filter criteria and limit settings.
  • Handle API rate limits or connectivity issues that may cause request failures.

Discussion