TickTick Trigger
AI-generatedOverview
This node triggers workflows in n8n by polling the TickTick task management service for newly created tasks. It supports filtering tasks by projects and assignees, and can authenticate using different methods including access token, email/password, or OAuth2. It is useful for automating actions based on new tasks appearing in TickTick, such as notifications, task processing, or integrations with other systems.
Use Case Examples
- Trigger a workflow whenever a new task is created in any project in TickTick.
- Trigger a workflow only for new tasks created in specific projects or assigned to specific users.
- Use different authentication methods to connect to TickTick depending on your account setup.
Properties
| Name | Meaning |
|---|---|
| Poll Times | Specifies the schedule for polling TickTick for new tasks, with options for various intervals such as every minute, hour, day, week, month, or custom cron expressions. |
| Authentication | Selects the authentication method to connect to TickTick, including Access Token (V1 API), Email/Password (V2 API), or OAuth2 (V1 API). |
| Event | The event type that triggers the node. Currently supports 'Task Created' to trigger when new tasks are created. |
| Options | Additional filtering options for the trigger, including filtering by specific projects and assignees. |
Output
JSON
id- The unique identifier of the task.title- The title or name of the task.createdTime- The timestamp when the task was created.projectId- The identifier of the project the task belongs to.assignee- The user assigned to the task, if any.
Dependencies
- TickTick API (V1 and V2)
Troubleshooting
- If no tasks are emitted, check that the selected projects and assignees filters are correct and that tasks exist matching those filters.
- Authentication errors may occur if credentials are invalid or expired; verify and update credentials as needed.
- The node only supports the 'taskCreated' event; using other events will cause an error.
Links
- TickTick Official Website - Official website for the TickTick task management service.
- TickTick API Documentation - Documentation for TickTick APIs used by the node.