Linear (API key)

Linear helps streamline software projects, sprints, tasks, and bug tracking. It's built for high-performance teams.

Integrate the Linear (API key) API with the Node API

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

Run Node Code with Node API on Issue Created (Instant) from Linear (API key) API
Linear (API key) + Node
 
Try it
Run Node Code with Node API on Issue Updated (Instant) from Linear (API key) API
Linear (API key) + Node
 
Try it
Run Node Code with Node API on New Created Comment (Instant) from Linear (API key) API
Linear (API key) + Node
 
Try it
Run Node Code with Node API on New Issue Status Updated (Instant) from Linear (API key) API
Linear (API key) + Node
 
Try it
New Created Comment (Instant) from the Linear (API key) API

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

 
Try it
New Created Issue (Instant) from the Linear (API key) API

Emit new event when a new issue is created. See the docs here

 
Try it
New Issue Status Updated (Instant) from the Linear (API key) API

Emit new event when the status of an issue is updated. See the docs here

 
Try it
New Updated Issue (Instant) from the Linear (API key) API

Emit new event when an issue is updated. See the docs here

 
Try it
Create Issue with the Linear (API key) API

Create an issue (API Key). See the docs here

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it
Get Issue with the Linear (API key) API

Get an issue by ID (API Key). See the docs here

 
Try it
Get Teams with the Linear (API key) API

Get all the teams (API Key). See the docs here

 
Try it
Search Issues with the Linear (API key) API

Search issues (API Key). See the docs here

 
Try it

Overview of Linear (API key)

With the Linear API, you can manage your workflow, track issues, and automate
your development process. Here are some examples of what you can build:

  • A custom workflow management tool
  • A tool to track issues and feature requests
  • A development process automation tool

Connect Linear (API key)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    linear_app: {
      type: "app",
      app: "linear_app",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{ 
        user(id: "me") {
          id
          email
          name
        }
      }`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.linear.app/graphql`,
      headers: {
        "Authorization": `${this.linear_app.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.