Todo list, checklist and task manager app
Add or update a single record in your Pipedream Data Store.
Add or update multiple records to your Pipedream Data Store.
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:
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,
// })
},
})
With the Data Stores API, you can build applications that:
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})