Motion

Manage calendars, meetings, projects & tasks in one tool

Integrate the Motion API with the Microsoft 365 Planner API

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

Create Plan with Microsoft 365 Planner API on Task Status Updated from Motion API
Motion + Microsoft 365 Planner
 
Try it
Create Bucket with Microsoft 365 Planner API on Task Status Updated from Motion API
Motion + Microsoft 365 Planner
 
Try it
Create Task with Microsoft 365 Planner API on Task Status Updated from Motion API
Motion + Microsoft 365 Planner
 
Try it
Create Task with Motion API on New Plan Created from Microsoft 365 Planner API
Microsoft 365 Planner + Motion
 
Try it
Create Task with Motion API on New Task Created from Microsoft 365 Planner API
Microsoft 365 Planner + Motion
 
Try it
Task Status Updated from the Motion API

Emit new event when the status of a specific task is updated.

 
Try it
New Plan Created from the Microsoft 365 Planner API

Emit new event when a new Plan is created in Microsoft 365 Planner

 
Try it
New Task Created from the Microsoft 365 Planner API

Emit new event when a new Task is created in Microsoft 365 Planner

 
Try it
Create Task with the Motion API

Create a new task. See the documentation

 
Try it
Create Bucket with the Microsoft 365 Planner API

Create a new bucket in Microsoft 365 Planner. See the documentation

 
Try it
Delete Task with the Motion API

Delete a specific task by Id. See the documentation

 
Try it
Create Plan with the Microsoft 365 Planner API

Create a new plan in Microsoft 365 Planner. See the documentation

 
Try it
Move Workspace with the Motion API

Move a specific task to another workspace. When moving tasks from one workspace to another, the tasks project, status, and label(s) and assignee will all be reset. See the documentation

 
Try it

Overview of Motion

The Motion API empowers users to streamline project management and productivity tasks. Within Pipedream's environment, you can leverage this API to automate actions based on project updates, task completions, and team collaborations. It's a toolset that sails smoothly with Pipedream's knack for creating swift integrations and workflows, making it possible to connect Motion with other apps to optimize project tracking, notifications, and data synchronization.

Connect Motion

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    motion: {
      type: "app",
      app: "motion",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.usemotion.com/v1
    /users/me`,
      params: {
        "X-API-Key": `${this.motion.$auth.api_key}`,
      },
    })
  },
})

Overview of Microsoft 365 Planner

The Microsoft 365 Planner API lets you tap into the robust task management capabilities of Planner within the Microsoft 365 suite. With this API on Pipedream, you can automate tasks, sync Planner data with other services, manage plans, tasks, and buckets programmatically. This opens up possibilities for creating custom workflows to enhance productivity, streamline project tracking, and maintain synchronization across various platforms.

Connect Microsoft 365 Planner

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: {
    microsoft_365_planner: {
      type: "app",
      app: "microsoft_365_planner",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://graph.microsoft.com/v1.0/me`,
      headers: {
        Authorization: `Bearer ${this.microsoft_365_planner.$auth.oauth_access_token}`,
      },
    })
  },
})