MeisterTask

Task Management for Teams

Integrate the MeisterTask API with the Airtable (OAuth) API

Setup the MeisterTask API trigger to run a workflow which integrates with the Airtable (OAuth) API. Pipedream's integration platform allows you to integrate MeisterTask and Airtable (OAuth) remarkably fast. Free for developers.

Add Label To Task with MeisterTask API on New Field from Airtable (OAuth) API
Airtable (OAuth) + MeisterTask
 
Try it
Add Label To Task with MeisterTask API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + MeisterTask
 
Try it
Add Label To Task with MeisterTask API on New or Modified Field from Airtable (OAuth) API
Airtable (OAuth) + MeisterTask
 
Try it
Add Label To Task with MeisterTask API on New or Modified Records from Airtable (OAuth) API
Airtable (OAuth) + MeisterTask
 
Try it
Add Label To Task with MeisterTask API on New or Modified Records in View from Airtable (OAuth) API
Airtable (OAuth) + MeisterTask
 
Try it
New Comment Created from the MeisterTask API

Emit new event when a new comment is created. See the docs

 
Try it
New Project Created from the MeisterTask API

Emit new event when a new project is created. See the docs

 
Try it
New Section Created from the MeisterTask API

Emit new event when a new section is created. See the docs

 
Try it
New Task Created from the MeisterTask API

Emit new event when a new task is created. See the docs

 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
Add Label To Task with the MeisterTask API

Adds a project label to a task. See the docs

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Create Attachment with the MeisterTask API

Create a new attachment. See the docs

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Create Label with the MeisterTask API

Create a new label in a project. See the docs

 
Try it

Overview of MeisterTask

MeisterTask's API enables automation of task management processes, offering a programmatic way to interact with your tasks and projects. By leveraging the API with Pipedream, you can create powerful, serverless workflows that react to events in MeisterTask, manipulate tasks and projects, or synchronize data across multiple platforms. It's a robust tool for enhancing productivity and streamlining project collaboration.

Connect MeisterTask

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

Overview of Airtable (OAuth)

Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.

Connect Airtable (OAuth)

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