The to do list to organize work & life
Emit new event for each new or modified task. See the docs here
Emit an event for each new or modified record in a table
Emit an event for each new or modified record in a view
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
Retrieve records from a table with automatic pagination. Optionally sort and filter results.
With the Todoist API, you can build a variety of applications and tools to help
you manage your to-do lists and tasks. Here are just a few examples of what you
can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
todoist: {
type: "app",
app: "todoist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.todoist.com/rest/v2/projects`,
headers: {
Authorization: `Bearer ${this.todoist.$auth.oauth_access_token}`,
},
})
},
})
Using the Airtable API, you can build applications that can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable: {
type: "app",
app: "airtable",
},
baseId: {
type: "$.airtable.baseId",
appProp: "airtable",
},
tableId: {
type: "$.airtable.tableId",
baseIdProp: "baseId",
},
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/${this.baseId}/${this.tableId}`,
headers: {
Authorization: `Bearer ${this.airtable.$auth.api_key}`,
"accept": `application/json`,
},
})
}
})