← Linear (API key) + HubSpot integrations

Update Fields on the Form with HubSpot API on Issue Updated (Instant) from Linear (API key) API

Pipedream makes it easy to connect APIs for HubSpot, Linear (API key) and 3,000+ other apps remarkably fast.

Trigger workflow on
Issue Updated (Instant) from the Linear (API key) API
Next, do this
Update Fields on the Form with the HubSpot API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

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

Developers Pipedream

Getting Started

This integration creates a workflow with a Linear (API key) trigger and HubSpot action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the Issue Updated (Instant) trigger
    1. Connect your Linear (API key) account
    2. Select one or more Team IDs
    3. Optional- Select a Project
    4. Optional- Configure Limit
  3. Configure the Update Fields on the Form action
    1. Connect your HubSpot account
    2. Select a Form ID
    3. Optional- Configure Name
    4. Optional- Configure Archived
    5. Optional- Configure Field Groups
    6. Optional- Configure Create New Contact for New Email
    7. Optional- Configure Editable
    8. Optional- Configure Allow Link to Reset Known Values
    9. Optional- Configure Lifecycle Stages
    10. Optional- Select a Post Submit Action Type
    11. Optional- Configure Post Submit Action Value
    12. Optional- Select a Language
    13. Optional- Configure Pre-populate Known Values
    14. Optional- Configure Cloneable
    15. Optional- Configure Notify Contact Owner
    16. Optional- Configure Recaptcha Enabled
    17. Optional- Configure Archivable
    18. Optional- Select one or more Contact Email
    19. Optional- Configure Render Raw HTML
    20. Optional- Configure CSS Class
    21. Optional- Select a Theme
    22. Optional- Configure Submit Button Text
    23. Optional- Configure Label Text Size
    24. Optional- Configure Legal Consent Text Color
    25. Optional- Configure Font Family
    26. Optional- Configure Legal Consent Text Size
    27. Optional- Configure Background Width
    28. Optional- Configure Help Text Size
    29. Optional- Configure Submit Font Color
    30. Optional- Configure Label Text Color
    31. Optional- Select a Submit Alignment
    32. Optional- Configure Submit Size
    33. Optional- Configure Help Text Color
    34. Optional- Configure Submit Color
    35. Optional- Select a Legal Consent Options Type
    36. Optional- Configure Legal Consent Options Object
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Triggers instantly when any issue is updated in Linear. Provides complete issue details with changes. Supports filtering by team and project. Includes all updates except status changes. See Linear docs for additional info [here](https://linear.app/developers/webhooks).
Version:0.3.16
Key:linear_app-issue-updated-instant

Linear (API key) Overview

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.

Trigger Code

import common from "../common/webhook.mjs";
import constants from "../../common/constants.mjs";

export default {
  ...common,
  key: "linear_app-issue-updated-instant",
  name: "Issue Updated (Instant)",
  description: "Triggers instantly when any issue is updated in Linear. Provides complete issue details with changes. Supports filtering by team and project. Includes all updates except status changes. See Linear docs for additional info [here](https://linear.app/developers/webhooks).",
  type: "source",
  version: "0.3.16",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getResourceTypes() {
      return [
        constants.RESOURCE_TYPE.ISSUE,
      ];
    },
    getWebhookLabel() {
      return "Issue updated";
    },
    getResourcesFn() {
      return this.linearApp.listIssues;
    },
    getResourcesFnArgs() {
      return {
        orderBy: "updatedAt",
        filter: {
          team: {
            id: {
              in: this.teamIds,
            },
          },
          project: {
            id: {
              eq: this.projectId,
            },
          },
        },
      };
    },
    getResource(issue) {
      return this.linearApp.getIssue({
        issueId: issue.id,
      });
    },
    getMetadata(resource) {
      const {
        title,
        data,
        updatedAt,
      } = resource;
      const ts = Date.parse(data?.updatedAt || updatedAt);
      return {
        id: `${resource.id}-${ts}`,
        summary: `Issue Updated: ${data?.title || title}`,
        ts,
      };
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Linear (API key)linearAppappThis component uses the Linear (API key) app.
Team IDsteamIdsstring[]Select a value from the drop down menu.
ProjectprojectIdstringSelect a value from the drop down menu.
Limitlimitinteger

Maximum number of items to return when polling. Defaults to 20 if not specified.

N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.

Trigger Authentication

Linear (API key) uses API keys for authentication. When you connect your Linear (API key) account, Pipedream securely stores the keys so you can easily authenticate to Linear (API key) APIs in both code and no-code steps.

About Linear (API key)

Linear helps streamline software projects, sprints, tasks, and bug tracking. It's built for high-performance teams.

Action

Description:Update some of the form definition components. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#patch-%2Fmarketing%2Fv3%2Fforms%2F%7Bformid%7D)
Version:0.0.9
Key:hubspot-update-fields-on-the-form

HubSpot Overview

The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.

Action Code

import { ConfigurationError } from "@pipedream/platform";
import { LANGUAGE_OPTIONS } from "../../common/constants.mjs";
import {
  cleanObject, parseObject,
} from "../../common/utils.mjs";
import hubspot from "../../hubspot.app.mjs";

export default {
  key: "hubspot-update-fields-on-the-form",
  name: "Update Fields on the Form",
  description:
    "Update some of the form definition components. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#patch-%2Fmarketing%2Fv3%2Fforms%2F%7Bformid%7D)",
  version: "0.0.9",
  annotations: {
    destructiveHint: true,
    openWorldHint: true,
    readOnlyHint: false,
  },
  type: "action",
  props: {
    hubspot,
    formId: {
      propDefinition: [
        hubspot,
        "formId",
      ],
    },
    name: {
      type: "string",
      label: "Name",
      description: "The name of the form.",
      optional: true,
    },
    archived: {
      type: "boolean",
      label: "Archived",
      description: "Whether the form is archived.",
      optional: true,
    },
    fieldGroups: {
      type: "string[]",
      label: "Field Groups",
      description:
        "A list for objects of group type and fields. **Format: `[{ \"groupType\": \"default_group\", \"richTextType\": \"text\", \"fields\": [ { \"objectTypeId\": \"0-1\", \"name\": \"email\", \"label\": \"Email\", \"required\": true, \"hidden\": false, \"fieldType\": \"email\", \"validation\": { \"blockedEmailDomains\": [], \"useDefaultBlockList\": false }}]}]`** [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#post-%2Fmarketing%2Fv3%2Fforms%2F) for more information.",
      optional: true,
    },
    createNewContactForNewEmail: {
      type: "boolean",
      label: "Create New Contact for New Email",
      description:
        "Whether to create a new contact when a form is submitted with an email address that doesn't match any in your existing contacts records.",
      optional: true,
    },
    editable: {
      type: "boolean",
      label: "Editable",
      description: "Whether the form can be edited.",
      optional: true,
    },
    allowLinkToResetKnownValues: {
      type: "boolean",
      label: "Allow Link to Reset Known Values",
      description:
        "Whether to add a reset link to the form. This removes any pre-populated content on the form and creates a new contact on submission.",
      optional: true,
    },
    lifecycleStages: {
      type: "string[]",
      label: "Lifecycle Stages",
      description:
        "A list of objects of lifecycle stages. **Format: `[{ \"objectTypeId\": \"0-1\", \"value\": \"subscriber\" }]`** [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#post-%2Fmarketing%2Fv3%2Fforms%2F) for more information.",
      optional: true,
      default: [],
    },
    postSubmitActionType: {
      type: "string",
      label: "Post Submit Action Type",
      description:
        "The action to take after submit. The default action is displaying a thank you message.",
      options: [
        "thank_you",
        "redirect_url",
      ],
      optional: true,
    },
    postSubmitActionValue: {
      type: "string",
      label: "Post Submit Action Value",
      description: "The thank you text or the page to redirect to.",
      optional: true,
    },
    language: {
      type: "string",
      label: "Language",
      description: "The language of the form.",
      options: LANGUAGE_OPTIONS,
      optional: true,
    },
    prePopulateKnownValues: {
      type: "boolean",
      label: "Pre-populate Known Values",
      description:
        "Whether contact fields should pre-populate with known information when a contact returns to your site.",
      optional: true,
    },
    cloneable: {
      type: "boolean",
      label: "Cloneable",
      description: "Whether the form can be cloned.",
      optional: true,
    },
    notifyContactOwner: {
      type: "boolean",
      label: "Notify Contact Owner",
      description:
        "Whether to send a notification email to the contact owner when a submission is received.",
      optional: true,
    },
    recaptchaEnabled: {
      type: "boolean",
      label: "Recaptcha Enabled",
      description: "Whether CAPTCHA (spam prevention) is enabled.",
      optional: true,
    },
    archivable: {
      type: "boolean",
      label: "Archivable",
      description: "Whether the form can be archived.",
      optional: true,
    },
    notifyRecipients: {
      propDefinition: [
        hubspot,
        "contactEmail",
      ],
      type: "string[]",
      optional: true,
    },
    renderRawHtml: {
      type: "boolean",
      label: "Render Raw HTML",
      description:
        "Whether the form will render as raw HTML as opposed to inside an iFrame.",
      optional: true,
    },
    cssClass: {
      type: "string",
      label: "CSS Class",
      description: "The CSS class of the form.",
      optional: true,
    },
    theme: {
      type: "string",
      label: "Theme",
      description:
        "The theme used for styling the input fields. This will not apply if the form is added to a HubSpot CMS page`.",
      options: [
        "default_style",
        "canvas",
        "linear",
        "round",
        "sharp",
        "legacy",
      ],
      optional: true,
    },
    submitButtonText: {
      type: "string",
      label: "Submit Button Text",
      description: "The text displayed on the form submit button.",
      optional: true,
    },
    labelTextSize: {
      type: "string",
      label: "Label Text Size",
      description: "The size of the label text.",
      optional: true,
    },
    legalConsentTextColor: {
      type: "string",
      label: "Legal Consent Text Color",
      description: "The color of the legal consent text.",
      optional: true,
    },
    fontFamily: {
      type: "string",
      label: "Font Family",
      description: "The font family of the form.",
      optional: true,
    },
    legalConsentTextSize: {
      type: "string",
      label: "Legal Consent Text Size",
      description: "The size of the legal consent text.",
      optional: true,
    },
    backgroundWidth: {
      type: "string",
      label: "Background Width",
      description: "The width of the background.",
      optional: true,
    },
    helpTextSize: {
      type: "string",
      label: "Help Text Size",
      description: "The size of the help text.",
      optional: true,
    },
    submitFontColor: {
      type: "string",
      label: "Submit Font Color",
      description: "The color of the submit font.",
      optional: true,
    },
    labelTextColor: {
      type: "string",
      label: "Label Text Color",
      description: "The color of the label text.",
      optional: true,
    },
    submitAlignment: {
      type: "string",
      label: "Submit Alignment",
      description: "The alignment of the submit button.",
      options: [
        "left",
        "center",
        "right",
      ],
      optional: true,
    },
    submitSize: {
      type: "string",
      label: "Submit Size",
      description: "The size of the submit button.",
      optional: true,
    },
    helpTextColor: {
      type: "string",
      label: "Help Text Color",
      description: "The color of the help text.",
      optional: true,
    },
    submitColor: {
      type: "string",
      label: "Submit Color",
      description: "The color of the submit button.",
      optional: true,
    },
    legalConsentOptionsType: {
      type: "string",
      label: "Legal Consent Options Type",
      description: "The type of legal consent options.",
      options: [
        "none",
        "legitimate_interest",
        "explicit_consent_process",
        "implicit_consent_process",
      ],
      optional: true,
    },
    legalConsentOptionsObject: {
      type: "object",
      label: "Legal Consent Options Object",
      description:
        "The object of legal consent options. **Format: `{\"subscriptionTypeIds\": [1,2,3], \"lawfulBasis\": \"lead\", \"privacy\": \"string\"}`** [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#post-%2Fmarketing%2Fv3%2Fforms%2F) for more information.",
      optional: true,
    },
  },
  async run({ $ }) {
    const configuration = {};
    if (
      (this.postSubmitActionType && !this.postSubmitActionValue) ||
      (!this.postSubmitActionType && this.postSubmitActionValue)
    ) {
      throw new ConfigurationError(
        "Post Submit Action Type and Value must be provided together.",
      );
    }

    if (this.language) {
      configuration.language = this.language;
    }
    if (this.cloneable) {
      configuration.cloneable = this.cloneable;
    }
    if (this.postSubmitActionType) {
      configuration.postSubmitAction = {
        type: this.postSubmitActionType,
        value: this.postSubmitActionValue,
      };
    }
    if (this.editable) {
      configuration.editable = this.editable;
    }
    if (this.archivable) {
      configuration.archivable = this.archivable;
    }
    if (this.recaptchaEnabled) {
      configuration.recaptchaEnabled = this.recaptchaEnabled;
    }
    if (this.notifyContactOwner) {
      configuration.notifyContactOwner = this.notifyContactOwner;
    }
    if (this.notifyRecipients) {
      configuration.notifyRecipients = parseObject(this.notifyRecipients);
    }
    if (this.createNewContactForNewEmail) {
      configuration.createNewContactForNewEmail =
        this.createNewContactForNewEmail;
    }
    if (this.prePopulateKnownValues) {
      configuration.prePopulateKnownValues = this.prePopulateKnownValues;
    }
    if (this.allowLinkToResetKnownValues) {
      configuration.allowLinkToResetKnownValues =
        this.allowLinkToResetKnownValues;
    }
    if (this.lifecycleStages) {
      configuration.lifecycleStages = parseObject(this.lifecycleStages);
    }

    const data = cleanObject({
      formType: "hubspot",
      name: this.name,
      archived: this.archived,
      fieldGroups: parseObject(this.fieldGroups),
      displayOptions: {
        renderRawHtml: this.renderRawHtml,
        cssClass: this.cssClass,
        theme: this.theme,
        submitButtonText: this.submitButtonText,
        style: {
          labelTextSize: this.labelTextSize,
          legalConsentTextColor: this.legalConsentTextColor,
          fontFamily: this.fontFamily,
          legalConsentTextSize: this.legalConsentTextSize,
          backgroundWidth: this.backgroundWidth,
          helpTextSize: this.helpTextSize,
          submitFontColor: this.submitFontColor,
          labelTextColor: this.labelTextColor,
          submitAlignment: this.submitAlignment,
          submitSize: this.submitSize,
          helpTextColor: this.helpTextColor,
          submitColor: this.submitColor,
        },
      },
      legalConsentOptions: {
        type: this.legalConsentOptionsType,
        ...(this.legalConsentOptionsObject
          ? parseObject(this.legalConsentOptionsObject)
          : {}),
      },
    });

    data.configuration = cleanObject(configuration);

    const response = await this.hubspot.updateForm({
      $,
      formId: this.formId,
      data,
    });

    $.export("$summary", `Successfully updated form with ID: ${response.id}`);

    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
HubSpothubspotappThis component uses the HubSpot app.
Form IDformIdstringSelect a value from the drop down menu.
Namenamestring

The name of the form.

Archivedarchivedboolean

Whether the form is archived.

Field GroupsfieldGroupsstring[]

A list for objects of group type and fields. Format: [{ "groupType": "default_group", "richTextType": "text", "fields": [ { "objectTypeId": "0-1", "name": "email", "label": "Email", "required": true, "hidden": false, "fieldType": "email", "validation": { "blockedEmailDomains": [], "useDefaultBlockList": false }}]}] See the documentation for more information.

Create New Contact for New EmailcreateNewContactForNewEmailboolean

Whether to create a new contact when a form is submitted with an email address that doesn't match any in your existing contacts records.

Editableeditableboolean

Whether the form can be edited.

Allow Link to Reset Known ValuesallowLinkToResetKnownValuesboolean

Whether to add a reset link to the form. This removes any pre-populated content on the form and creates a new contact on submission.

Lifecycle StageslifecycleStagesstring[]

A list of objects of lifecycle stages. Format: [{ "objectTypeId": "0-1", "value": "subscriber" }] See the documentation for more information.

Post Submit Action TypepostSubmitActionTypestringSelect a value from the drop down menu:thank_youredirect_url
Post Submit Action ValuepostSubmitActionValuestring

The thank you text or the page to redirect to.

LanguagelanguagestringSelect a value from the drop down menu:{ "label": "Afrikaans", "value": "af" }{ "label": "Arabic (Egypt)", "value": "ar-eg" }{ "label": "Bulgarian", "value": "bg" }{ "label": "Bengali", "value": "bn" }{ "label": "Czech", "value": "cs" }{ "label": "Danish", "value": "da" }{ "label": "Greek", "value": "el" }{ "label": "English", "value": "en" }{ "label": "Spanish", "value": "es" }{ "label": "Spanish (Mexico)", "value": "es-mx" }{ "label": "Finnish", "value": "fi" }{ "label": "French", "value": "fr" }{ "label": "French (Canada)", "value": "fr-ca" }{ "label": "Hebrew (Israel)", "value": "he-il" }{ "label": "Croatian", "value": "hr" }{ "label": "Hungarian", "value": "hu" }{ "label": "Indonesian", "value": "id" }{ "label": "Italian", "value": "it" }{ "label": "Japanese", "value": "ja" }{ "label": "Korean", "value": "ko" }{ "label": "Lithuanian", "value": "lt" }{ "label": "Malay", "value": "ms" }{ "label": "Dutch", "value": "nl" }{ "label": "Norwegian (Norway)", "value": "no-no" }{ "label": "Polish", "value": "pl" }{ "label": "Portuguese", "value": "pt" }{ "label": "Portuguese (Brazil)", "value": "pt-br" }{ "label": "Romanian", "value": "ro" }{ "label": "Russian", "value": "ru" }{ "label": "Slovak", "value": "sk" }{ "label": "Slovenian", "value": "sl" }{ "label": "Swedish", "value": "sv" }{ "label": "Thai", "value": "th" }{ "label": "Tagalog", "value": "tl" }{ "label": "Ukrainian", "value": "uk" }{ "label": "Vietnamese", "value": "vi" }{ "label": "Chinese (China)", "value": "zh-cn" }{ "label": "Chinese (Hong Kong)", "value": "zh-hk" }{ "label": "Chinese (Taiwan)", "value": "zh-tw" }
Pre-populate Known ValuesprePopulateKnownValuesboolean

Whether contact fields should pre-populate with known information when a contact returns to your site.

Cloneablecloneableboolean

Whether the form can be cloned.

Notify Contact OwnernotifyContactOwnerboolean

Whether to send a notification email to the contact owner when a submission is received.

Recaptcha EnabledrecaptchaEnabledboolean

Whether CAPTCHA (spam prevention) is enabled.

Archivablearchivableboolean

Whether the form can be archived.

Contact EmailnotifyRecipientsstring[]Select a value from the drop down menu.
Render Raw HTMLrenderRawHtmlboolean

Whether the form will render as raw HTML as opposed to inside an iFrame.

CSS ClasscssClassstring

The CSS class of the form.

ThemethemestringSelect a value from the drop down menu:default_stylecanvaslinearroundsharplegacy
Submit Button TextsubmitButtonTextstring

The text displayed on the form submit button.

Label Text SizelabelTextSizestring

The size of the label text.

Legal Consent Text ColorlegalConsentTextColorstring

The color of the legal consent text.

Font FamilyfontFamilystring

The font family of the form.

Legal Consent Text SizelegalConsentTextSizestring

The size of the legal consent text.

Background WidthbackgroundWidthstring

The width of the background.

Help Text SizehelpTextSizestring

The size of the help text.

Submit Font ColorsubmitFontColorstring

The color of the submit font.

Label Text ColorlabelTextColorstring

The color of the label text.

Submit AlignmentsubmitAlignmentstringSelect a value from the drop down menu:leftcenterright
Submit SizesubmitSizestring

The size of the submit button.

Help Text ColorhelpTextColorstring

The color of the help text.

Submit ColorsubmitColorstring

The color of the submit button.

Legal Consent Options TypelegalConsentOptionsTypestringSelect a value from the drop down menu:nonelegitimate_interestexplicit_consent_processimplicit_consent_process
Legal Consent Options ObjectlegalConsentOptionsObjectobject

The object of legal consent options. Format: {"subscriptionTypeIds": [1,2,3], "lawfulBasis": "lead", "privacy": "string"} See the documentation for more information.

Action Authentication

HubSpot uses OAuth authentication. When you connect your HubSpot account, Pipedream will open a popup window where you can sign into HubSpot and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any HubSpot API.

Pipedream requests the following authorization scopes when you connect your account:

business-intelligencecrm.lists.readcrm.objects.companies.readcrm.objects.companies.writecrm.objects.contacts.readcrm.objects.contacts.writecrm.objects.deals.readcrm.objects.deals.writecrm.objects.quotes.readcrm.objects.quotes.writecrm.objects.owners.readcrm.objects.listings.writecrm.objects.listings.readcrm.schemas.companies.readcrm.schemas.companies.writecrm.schemas.contacts.readcrm.schemas.contacts.writecrm.schemas.deals.readcrm.schemas.quotes.readcrm.schemas.listings.writecrm.schemas.listings.readcrm.importfilesformsforms-uploaded-filesoauthtimelineintegration-synccrm.schemas.deals.writecrm.lists.writeconversations.readconversations.write

About HubSpot

HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.

More Ways to Connect HubSpot + Linear (API key)

Add Contact to List with HubSpot API on New Created Issue (Instant) from Linear (API key) API
Linear (API key) + HubSpot
 
Try it
Add Contact to List with HubSpot API on New Updated Issue (Instant) from Linear (API key) API
Linear (API key) + HubSpot
 
Try it
Create Company with HubSpot API on New Created Issue (Instant) from Linear (API key) API
Linear (API key) + HubSpot
 
Try it
Create Company with HubSpot API on New Updated Issue (Instant) from Linear (API key) API
Linear (API key) + HubSpot
 
Try it
Create Associations with HubSpot API on New Created Issue (Instant) from Linear (API key) API
Linear (API key) + HubSpot
 
Try it
Issue Status Updated (Instant) from the Linear (API key) 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. See Linear docs for additional info here

 
Try it
Issue Updated (Instant) from the Linear (API key) API

Triggers instantly when any issue is updated in Linear. Provides complete issue details with changes. Supports filtering by team and project. Includes all updates except status changes. See Linear docs for additional info here

 
Try it
New Comment Created (Instant) from the Linear (API key) 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. See Linear docs for additional info here

 
Try it
New Issue Created (Instant) from the Linear (API key) 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. See Linear docs for additional info here

 
Try it
New Project Update Written (Instant) from the Linear (API key) 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. See Linear docs for additional info here

 
Try it
Create Issue with the Linear (API key) 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 API Key authentication. See the documentation

 
Try it
Create Project with the Linear (API key) API

Create a project in Linear. See the documentation

 
Try it
Get Issue with the Linear (API key) API

Retrieves a Linear issue by its ID. Returns complete issue details including title, description, state, assignee, team, project, labels, and timestamps. Uses API Key authentication. See Linear docs for additional info here

 
Try it
Get Teams with the Linear (API key) 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 API Key authentication. See Linear docs for additional info here

 
Try it
List Projects with the Linear (API key) API

List projects in Linear. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
3,000+
apps by most popular

Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Premium
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Premium
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Premium
Klaviyo unifies your data, channels, and AI agents in one platform—text, WhatsApp, email marketing, and more—driving growth with every interaction.
Zendesk
Zendesk
Premium
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
Premium
Beta
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.