TickTick icon

TickTick

Interact with TickTick tasks and projects

Task → Get

AI-generated

Overview

This node interacts with the TickTick API to retrieve detailed information about a specific task within a project. It is useful for workflows that need to fetch task details for processing, reporting, or automation purposes, such as getting task status, due dates, or descriptions.

Use Case Examples

  1. Retrieve a task by selecting it from a list of tasks within a project.
  2. Fetch a task by providing its unique ID to integrate task details into another system.

Properties

Name Meaning
Authentication Selects the authentication method to use for accessing the TickTick API, including Access Token (V1 API), Email/Password (V2 API), or OAuth2 (V1 API).
Project Specifies the project containing the task. Can be selected from a list or provided by ID.
Task Specifies the task to retrieve. Can be selected from a list or provided by ID. This property is required.

Output

JSON

  • id - The unique identifier of the retrieved task.
  • title - The title or name of the task.
  • status - The current status of the task (e.g., completed, pending).
  • dueDate - The due date of the task, if set.
  • projectId - The identifier of the project to which the task belongs.
  • description - Detailed description or notes associated with the task.

Dependencies

  • TickTick API credentials (Access Token, Email/Password, or OAuth2)

Troubleshooting

  • Ensure the correct authentication method is selected and credentials are valid to avoid authentication errors.
  • Verify that the project ID and task ID are correct and exist in TickTick to prevent 'task not found' errors.
  • If the node throws an 'Unsupported operation' error, check that the resource is set to 'Task' and operation to 'Get'.
  • Network issues or API rate limits may cause request failures; retry or check API status if errors occur.

Discussion