with CINC and Linear (API key)?
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 API Key authentication. See the documentation
The CINC (Commissions Inc) API provides a suite of tools tailored for real estate professionals seeking to enhance lead generation, manage clients, and streamline operations. By leveraging the CINC API on Pipedream, users can create automated workflows to sync leads, manage contacts, and trigger custom real-time actions based on client interactions and data changes. Pipedream's serverless platform allows for seamless integration between CINC and various other services, enabling agents and agencies to improve efficiency and stay ahead in the competitive real estate market.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { cinc: { type: "app", app: "cinc", } }, async run({steps, $}) { return await axios($, { url: `https://public.cincapi.com/v2/site/me`, headers: { Authorization: `Bearer ${this.cinc.$auth.oauth_access_token}`, }, }) }, }) Linear helps streamline software project management, bug tracking, and task coordination. By using the Linear (API key) API with Pipedream, you can automate routine tasks, sync issues across platforms, and trigger custom workflows. Think auto-assignment of tasks based on specific triggers or pushing updates to a Slack channel when an issue's status changes. These automations save time and ensure that your development team stays focused on coding rather than on administrative overhead.
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, }) }, })