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 Schedule API

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

Create issue with Linear (API key) API on Daily schedule from Schedule API
Schedule + Linear (API key)
 
Try it
Create issue with Linear (API key) API on Monthly schedule from Schedule API
Schedule + Linear (API key)
 
Try it
Create issue with Linear (API key) API on Schedule based on a custom interval from Schedule API
Schedule + Linear (API key)
 
Try it
Create issue with Linear (API key) API on Weekly schedule from Schedule API
Schedule + Linear (API key)
 
Try it
Get Issue with Linear (API key) API on Custom Interval from Schedule API
Schedule + Linear (API key)
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
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
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

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

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

 
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
Update Issue with the Linear (API key) API

Update an issue (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,
    })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.