Linear helps streamline software projects, sprints, tasks, and bug tracking. It's built for high-performance teams.
Go to siteLinear (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.
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,
})
},
})
Issue Sync with GitHub: Whenever a new issue is created in Linear, automatically create a corresponding GitHub issue. This keeps your project management and code repositories aligned, ensuring no task goes unnoticed by developers who primarily interact with GitHub.
Slack Notifications for Priority Tasks: Set up a workflow where high-priority issues in Linear trigger instant messages to a designated Slack channel or user. This ensures critical items are immediately visible and can be acted upon swiftly by your team.
Customer Support Ticketing Integration: Connect Linear with a customer support platform like Zendesk. When a support ticket escalates to a point where development work is needed, automatically create a new Linear issue to track the work, making sure customer problems are addressed in your development workflow.
Linear (OAuth) uses OAuth authentication. When you connect your Linear (OAuth) account, Pipedream will open a popup window where you can sign into Linear (OAuth) and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Linear (OAuth) API.
Pipedream requests the following authorization scopes when you connect your account:
read
write
issues:create
comments:create
GET
https://linear.app/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://api.linear.app/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}