MeisterTask

Task Management for Teams

Integrate the MeisterTask API with the ServiceNow API

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

Create Table Record with ServiceNow API on New Comment Created from MeisterTask API
MeisterTask + ServiceNow
 
Try it
Create Table Record with ServiceNow API on New Project Created from MeisterTask API
MeisterTask + ServiceNow
 
Try it
Create Table Record with ServiceNow API on New Section Created from MeisterTask API
MeisterTask + ServiceNow
 
Try it
Create Table Record with ServiceNow API on New Task Created from MeisterTask API
MeisterTask + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Comment Created from MeisterTask API
MeisterTask + ServiceNow
 
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
Add Label To Task with the MeisterTask API

Adds a project label to a task. See the docs

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Create Attachment with the MeisterTask API

Create a new attachment. See the docs

 
Try it
Get Table Record By SysId with the ServiceNow API

Retrieves the record identified by the specified sys_id from the specified table.

 
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 ServiceNow

The ServiceNow API enables developers to tap into the robust capabilities of ServiceNow's IT service management platform. With the API, you can create, read, update, and delete records, manage workflows, and integrate with other services. By leveraging these capabilities, you can automate routine tasks, sync data across multiple platforms, and enhance operational efficiencies.

Connect ServiceNow

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: {
    servicenow: {
      type: "app",
      app: "servicenow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
      headers: {
        Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
      },
    })
  },
})