MeisterTask

Task Management for Teams

Go to site
Explore
/
Apps
/
MeisterTask

MeisterTask API Integrations

Build and run workflows using the MeisterTask API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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:

  • Workflow Automation Tools: Automate and optimize your workflows using MeisterTask's API. For example, you could build a tool that automatically creates new tasks in MeisterTask when issues are reported in your company's bug tracker.
  • Time Tracking Applications: Use MeisterTask's API to build a time tracking application that integrates with your company's current workflow.
  • Reporting & Data Visualization Tools: Generate reports and visualize data from your MeisterTask account using the MeisterTask API. For example, you could build a tool that generates a weekly report of how much time was spent on each project.
  • Integrations with Other Applications: MeisterTask's API enables developers to build all sorts of integrations with other applications. For example, you could build an integration that automatically adds new contacts from your CRM into your MeisterTask account.
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.mindmeister.com/api/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.meistertask.$auth.oauth_access_token}`,
      },
    })
  },
})

Choose an API to Connect with MeisterTask API

1
-
12
of
1000+
apps by most popular

Authentication

MeisterTask uses OAuth authentication. When you connect your MeisterTask account, Pipedream will open a popup window where you can sign into MeisterTask and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any MeisterTask API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. authorization
    GEThttps://www.mindmeister.com/oauth2/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://www.mindmeister.com/oauth2/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}