Ticktick

Todo list, checklist and task manager app

Go to site
Explore
/
Apps
/
Ticktick

Ticktick API Integrations

Build and run workflows using the Ticktick API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The Ticktick API allows developers to create and manage tasks and to dos in a variety of environments. With the API, users can manage their personal tasks, tasks from multiple team members, and combine tasks from diverse sources. Here are some examples of what you can build with the Ticktick API:

  • Automatically send reminders for upcoming tasks.
  • Create task lists that can be shared with colleagues or team members.
  • Set up recurring task lists, such as daily or weekly checklists.
  • Synchronize tasks between multiple accounts, such as Gmail and Outlook.
  • Display task lists in a variety of formats, such as an interactive calendar or calendar view.
  • Integrate with third-party applications and services, such as Google Drive and Dropbox.
  • Generate custom reports from task data.
  • Automatically sync tasks between different devices, such as desktops, tablets, and smartphones.
  • Automatically notify assigned users about their tasks via email or SMS.
  • Manage complex workflows and enable collaborative task completion.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ticktick: {
      type: "app",
      app: "ticktick",
    }
  },
  async run({steps, $}) {
    const data = {
      "title": `Example task from Pipedream`,
    }
    const message = "Uncomment the code in order to make authenticated requests to Ticktick"
    return message
    // return await axios($, {
    //   method: "post",
    //   url: `https://api.ticktick.com/open/v1/task`,
    //   headers: {
    //     Authorization: `Bearer ${this.ticktick.$auth.oauth_access_token}`,
    //   },
    //   data,
    // })
  },
})
Complete a Task with Ticktick API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Ticktick
 
Try it
Complete a Task with Ticktick API on New Message from Discord API
Discord + Ticktick
 
Try it
Complete a Task with Ticktick API on New Message In Channels from Slack API
Slack + Ticktick
 
Try it
Complete a Task with Ticktick API on New Message in Channel from Discord Bot API
Discord Bot + Ticktick
 
Try it
Complete a Task with Ticktick API on New Submission from Typeform API
Typeform + Ticktick
 
Try it
Complete a Task with the Ticktick API

Complete a Task. See doc

 
Try it
Create a Task with the Ticktick API

Create a Task.See doc

 
Try it
List Projects with the Ticktick API

List all projects in a TickTick account

 
Try it
Update a Task with the Ticktick API

Update a Task. See doc

 
Try it

Authentication

Ticktick uses OAuth authentication. When you connect your Ticktick account, Pipedream will open a popup window where you can sign into Ticktick and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Ticktick API.

Pipedream requests the following authorization scopes when you connect your account:

tasks:write
OAuth Request Configurations:
  1. authorization
    GEThttps://ticktick.com/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://ticktick.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://ticktick.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code