TickTick

TickTick is a simple and easy-to-use time management tool. It includes modules for Tasks, Calendar, Eisenhower Matrix, Pomodoro, and Habit Tracker.

Integrate the TickTick API with the Discord API

Setup the TickTick API trigger to run a workflow which integrates with the Discord API. Pipedream's integration platform allows you to integrate TickTick and Discord remarkably fast. Free for developers.

Complete a Task with TickTick API on New Message (Instant) from Discord API
Discord + TickTick
 
Try it
Create a Task with Ticktick API on New Message from Discord API
Discord + TickTick
 
Try it
List Projects with Ticktick API on New Message from Discord API
Discord + TickTick
 
Try it
Update a Task with Ticktick API on New Message from Discord API
Discord + TickTick
 
Try it
Complete a Task with Ticktick API on Message Deleted (Instant) from Discord API
Discord + TickTick
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Task Completed from the TickTick API

Emit new event when a task is completed.

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Complete a Task with the TickTick API

Complete a Task. See the documentation

 
Try it
Create a Task with the TickTick API

Create a Task. See the documentation

 
Try it
List Projects with the TickTick API

List all projects in a TickTick account. See the documentation

 
Try it
Update a Task with the TickTick API

Update a Task. See documentation

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it

Overview of TickTick

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.

Connect TickTick

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ticktick: {
      type: "app",
      app: "ticktick",
    }
  },
  async run({steps, $}) {
    const data = {
      "title": `Example task from Pipedream`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.ticktick.com/open/v1/task`,
      headers: {
        Authorization: `Bearer ${this.ticktick.$auth.oauth_access_token}`,
      },
      data,
    })
  },
})

Overview of Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})