Task Management for Teams
Add or update a single record in your Pipedream Data Store.
Add or update multiple records to your Pipedream Data Store.
Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.
MeisterTask's API enables developers to build all sorts of integrations, tools
and applications that optimize and automate their workflows. Below are some
examples of what can be built using the MeisterTask API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
meistertask: {
type: "app",
app: "meistertask",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.mindmeister.com/api/v2/users/me`,
headers: {
Authorization: `Bearer ${this.meistertask.$auth.oauth_access_token}`,
},
})
},
})
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")
},
})