What do you want to automate

with Pipedrive and Linear (OAuth)?

Prompt, edit and deploy AI agents that connect to Pipedrive, Linear (OAuth) 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
Add Activity with Pipedrive API on Issue Created (Instant) from Linear (OAuth) API
Linear (OAuth) + Pipedrive
 
Try it
Add Activity with Pipedrive API on Issue Updated (Instant) from Linear (OAuth) API
Linear (OAuth) + Pipedrive
 
Try it
Add Activity with Pipedrive API on New Created Comment (Instant) from Linear (OAuth) API
Linear (OAuth) + Pipedrive
 
Try it
Add Activity with Pipedrive API on New Issue Status Updated (Instant) from Linear (OAuth) API
Linear (OAuth) + Pipedrive
 
Try it
Add Activity with Pipedrive API on New Project Update Written (Instant) from Linear (OAuth) API
Linear (OAuth) + Pipedrive
 
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
Deal Updated (Instant) from the Pipedrive API

Emit new event when a deal is updated.

 
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
Add Activity with the Pipedrive API

Adds a new activity. Includes more_activities_scheduled_in_context property in response's additional_data which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). See the Pipedrive API docs for Activities here. For info on adding an activity in Pipedrive

 
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
Add Deal with the Pipedrive API

Adds a new deal. See the Pipedrive API docs for Deals here

 
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
Add Lead with the Pipedrive API

Create a new lead in Pipedrive. See the documentation

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

Overview of Pipedrive

Pipedrive API on Pipedream allows you to create powerful sales automation and data management workflows. With access to Pipedrive's CRM capabilities, you can automate deal updates, contact management, and sales reporting. Whether you're syncing customer information across platforms or triggering actions based on deal stages, Pipedream makes these integrations seamless.

Connect Pipedrive

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: {
    pipedrive: {
      type: "app",
      app: "pipedrive",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.pipedrive.$auth.api_domain}/users/me`,
      headers: {
        Authorization: `Bearer ${this.pipedrive.$auth.oauth_access_token}`,
      },
    })
  },
})

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,
    })
  },
})

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