What do you want to automate

with Google Analytics and Linear (OAuth)?

Prompt, edit and deploy AI agents that connect to Google Analytics, 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
Create GA4 Property with Google Analytics API on New Created Comment (Instant) from Linear (OAuth) API
Linear (OAuth) + Google Analytics
 
Try it
Create GA4 Property with Google Analytics API on New Created Issue (Instant) from Linear (OAuth) API
Linear (OAuth) + Google Analytics
 
Try it
Create GA4 Property with Google Analytics API on New Issue Status Updated (Instant) from Linear (OAuth) API
Linear (OAuth) + Google Analytics
 
Try it
Create GA4 Property with Google Analytics API on New Project Update Written (Instant) from Linear (OAuth) API
Linear (OAuth) + Google Analytics
 
Try it
Create GA4 Property with Google Analytics API on New Updated Issue (Instant) from Linear (OAuth) API
Linear (OAuth) + Google Analytics
 
Try it
New Page Opened from the Google Analytics API

Emit new event when a page is viewed

 
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
Create GA4 Property with the Google Analytics API

Creates a new GA4 property. See the documentation

 
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
Create Key Event with the Google Analytics API

Creates a new key event. See the documentation

 
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
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 Google Analytics API with the Linear (OAuth) API
Setup the Google Analytics API trigger to run a workflow which integrates with the Linear (OAuth) API. Pipedream's integration platform allows you to integrate Google Analytics and Linear (OAuth) remarkably fast. Free for developers.

Overview of Google Analytics

The Google Analytics API unlocks the power of your analytics data, enabling automated access to custom reports, real-time statistics, and user behavior analysis. With it, you can extract actionable insights, push data to other platforms, and tailor your business strategy with precision. Leveraging Pipedream's serverless platform, these capabilities can be seamlessly integrated into workflows that trigger actions in other apps, send alerts, or even feed data warehouses for deeper analysis.

Connect Google Analytics

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: {
    google_analytics: {
      type: "app",
      app: "google_analytics",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_analytics.$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