What do you want to automate

with Linear (OAuth) and Coda?

Prompt, edit and deploy AI agents that connect to Linear (OAuth), Coda and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Copy Doc with Coda API on Issue Created (Instant) from Linear (OAuth) API
Linear (OAuth) + Coda
 
Try it
Copy Doc with Coda API on Issue Updated (Instant) from Linear (OAuth) API
Linear (OAuth) + Coda
 
Try it
Copy Doc with Coda API on New Created Comment (Instant) from Linear (OAuth) API
Linear (OAuth) + Coda
 
Try it
Copy Doc with Coda API on New Issue Status Updated (Instant) from Linear (OAuth) API
Linear (OAuth) + Coda
 
Try it
Copy Doc with Coda API on New Project Update Written (Instant) from Linear (OAuth) API
Linear (OAuth) + Coda
 
Try it
New Created Comment (Instant) from the Linear (OAuth) API

Triggers instantly when a new comment is added to an issue in Linear. Returns comment details including content, author, issue reference, and timestamps. Supports filtering by team. Uses OAuth authentication. See Linear docs for additional info here

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

Triggers instantly when a new issue is created in Linear. Provides complete issue details including title, description, team, assignee, state, and timestamps. Supports filtering by team and project. Uses OAuth authentication. See Linear docs for additional info here

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

Triggers instantly when an issue's workflow state changes (e.g., Todo to In Progress). Returns issue with previous and current state info. Can filter by specific target state. Uses OAuth authentication. See Linear docs for additional info here

 
Try it
New Project Update Written (Instant) from the Linear (OAuth) API

Triggers instantly when a project update (status report) is created in Linear. Returns update content, author, project details, and health status. Filters by team and optionally by project. Uses OAuth authentication. See Linear docs for additional info here

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

Triggers instantly when any issue is updated in Linear. Provides complete issue details with changes. Supports filtering by team and project. Includes all updates except status changes. Uses OAuth authentication. See Linear docs for additional info here

 
Try it
Create Issue with the Linear (OAuth) API

Creates a new issue in Linear. Requires team ID and title. Optional: description, assignee, project, state. Returns response object with success status and issue details. Uses OAuth authentication. See Linear docs for additional info here

 
Try it
Copy Doc with the Coda API

Creates a copy of the specified doc. See docs

 
Try it
Get Issue with the Linear (OAuth) API

Retrieves a Linear issue by its ID. Returns complete issue details including title, description, state, assignee, team, project, labels, and timestamps. Uses OAuth authentication. See Linear docs for additional info here

 
Try it
Create Doc with the Coda API

Creates a new doc. See docs

 
Try it
Get Teams with the Linear (OAuth) API

Retrieves all teams in your Linear workspace. Returns array of team objects with details like ID, name, and key. Supports pagination with configurable limit. Uses OAuth authentication. See Linear docs for additional info here

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

Overview of Linear (OAuth)

Linear (OAuth) API provides access to Linear's issue tracking and project management capabilities, letting you automate tasks, synchronize data across platforms, and enhance your team's productivity. Whether you're reporting bugs, assigning tasks, or tracking progress, the Linear API on Pipedream allows for real-time, event-driven workflows that can increase efficiency and foster collaboration within teams.

Connect Linear (OAuth)

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
31
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    linear: {
      type: "app",
      app: "linear",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{ 
        user(id: "me") {
          id
          name
          email
          displayName
        }
      }`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.linear.app/graphql`,
      headers: {
        Authorization: `Bearer ${this.linear.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Overview of Coda

The Coda API enables you to interact with your Coda docs for both data retrieval and manipulation. By leveraging this API on Pipedream, you can automate document updates, synchronize data across different platforms, orchestrate complex workflows, and react to changes in real-time. Coda’s tables can act as dynamic databases that interconnect with various services, allowing you to streamline operations that depend on the timely and accurate exchange of information.

Connect Coda

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: {
    coda: {
      type: "app",
      app: "coda",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://coda.io/apis/v1/whoami`,
      headers: {
        Authorization: `Bearer ${this.coda.$auth.api_token}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo