with Vision6 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 Vision6 API offers a powerful way to automate email marketing and audience engagement directly through Pipedream. With it, you can programmatically manage lists, contacts, and messages, and also track campaign performance. This API provides granular control over email workflows, enabling custom triggers, targeted actions, and detailed analytics retrieval. The combination of Vision6 with Pipedream's serverless platform unlocks endless possibilities for syncing data, personalizing communication, and optimizing marketing strategies without manual intervention.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { vision6: { type: "app", app: "vision6", } }, async run({steps, $}) { return await axios($, { url: `https://${this.vision6.$auth.region}.api.vision6.com/v1/lists`, headers: { Authorization: `Bearer ${this.vision6.$auth.api_key}`, "Content-Type": `application/json; charset=UTF-8`, }, }) }, }) 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, }) }, })