with Linear (API key) and Docusign Developer?
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
Creates a signature request from a template See the documentation
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, }) }, }) The DocuSign Developer API enables automation around electronic agreements, signatures, and approval processes. It's a powerful tool for streamlining document workflows, allowing you to create, send, and manage documents programmatically. With Pipedream, you can harness this capability to integrate DocuSign seamlessly with other services, triggering actions based on document status, automating follow-ups, syncing data with CRM systems, and more.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { docusign_developer: { type: "app", app: "docusign_developer", } }, async run({steps, $}) { return await axios($, { url: `https://account-d.docusign.com/oauth/userinfo`, headers: { Authorization: `Bearer ${this.docusign_developer.$auth.oauth_access_token}`, }, }) }, })