← Typeform + HubSpot integrations

Create Form with HubSpot API on New Submission from Typeform API

Pipedream makes it easy to connect APIs for HubSpot, Typeform and 2,800+ other apps remarkably fast.

Trigger workflow on
New Submission from the Typeform API
Next, do this
Create 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 Typeform 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 New Submission trigger
    1. Connect your Typeform account
    2. Select a Form
  3. Configure the Create Form action
    1. Connect your HubSpot account
    2. Configure Name
    3. Optional- Configure Archived
    4. Optional- Configure Field Groups
    5. Optional- Configure Create New Contact for New Email
    6. Optional- Configure Editable
    7. Optional- Configure Allow Link to Reset Known Values
    8. Optional- Configure Lifecycle Stages
    9. Optional- Select a Post Submit Action Type
    10. Optional- Configure Post Submit Action Value
    11. Optional- Select a Language
    12. Optional- Configure Pre-populate Known Values
    13. Optional- Configure Cloneable
    14. Optional- Configure Notify Contact Owner
    15. Optional- Configure Recaptcha Enabled
    16. Optional- Configure Archivable
    17. Optional- Select one or more Contact Email
    18. Optional- Configure Render Raw HTML
    19. Optional- Configure CSS Class
    20. Optional- Select a Theme
    21. Optional- Configure Submit Button Text
    22. Optional- Configure Label Text Size
    23. Optional- Configure Legal Consent Text Color
    24. Optional- Configure Font Family
    25. Optional- Configure Legal Consent Text Size
    26. Optional- Configure Background Width
    27. Optional- Configure Help Text Size
    28. Optional- Configure Submit Font Color
    29. Optional- Configure Label Text Color
    30. Optional- Select a Submit Alignment
    31. Optional- Configure Submit Size
    32. Optional- Configure Help Text Color
    33. Optional- Configure Submit Color
    34. Optional- Select a Legal Consent Options Type
    35. 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:Emit new submission
Version:0.0.8
Key:typeform-new-submission

Typeform Overview

The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.

Trigger Code

import { createHmac } from "crypto";
import sampleEmit from "./test-event.mjs";
import { uuid } from "uuidv4";
import common from "../common/common.mjs";
import constants from "../../constants.mjs";
import utils from "../common/utils.mjs";

const { typeform } = common.props;
const { parseIsoDate } = utils;

export default {
  ...common,
  key: "typeform-new-submission",
  name: "New Submission",
  version: "0.0.8",
  type: "source",
  description: "Emit new submission",
  props: {
    ...common.props,
    http: {
      type: "$.interface.http",
      customResponse: true,
    },
    db: "$.service.db",
    formId: {
      propDefinition: [
        typeform,
        "formId",
      ],
    },
  },
  methods: {
    ...common.methods,
    generateSecret() {
      return "" + Math.random();
    },
  },
  hooks: {
    ...common.hooks,
    async activate() {
      const secret = this.generateSecret();
      this._setSecret(secret);

      let tag = this._getTag();
      if (!tag) {
        tag = uuid();
        this._setTag(tag);
      }

      return await this.typeform.createHook({
        endpoint: this.http.endpoint,
        formId: this.formId,
        tag,
        secret,
      });
    },
    async deactivate() {
      const tag = this._getTag();

      return await this.typeform.deleteHook({
        formId: this.formId,
        tag,
      });
    },
  },
  async run(event) {
    const {
      body,
      headers,
    } = event;

    const { [constants.TYPEFORM_SIGNATURE]: typeformSignature } = headers;

    if (typeformSignature) {
      const secret = this._getSecret();

      const hmac =
        createHmac(constants.ALGORITHM, secret)
          .update(body)
          .digest(constants.ENCODING);

      const signature = `${constants.ALGORITHM}=${hmac}`;

      if (typeformSignature !== signature) {
        throw new Error("signature mismatch");
      }
    }

    let formResponseString = "";
    const data = Object.assign({}, body.form_response);
    data.form_response_parsed = {};

    for (let i = 0; i < body.form_response.answers.length; i++) {
      const field = body.form_response.definition.fields[i];
      const answer = body.form_response.answers[i];

      let parsedAnswer;
      let value = answer[answer.type];

      if (value.label) {
        parsedAnswer = value.label;

      } else if (value.labels) {
        parsedAnswer = value.labels.join();

      } else if (value.choice) {
        parsedAnswer = value.choice;

      } else if (value.choices) {
        parsedAnswer = value.choices.join();

      } else {
        parsedAnswer = value;
      }

      data.form_response_parsed[field.title] = parsedAnswer;
      formResponseString += `### ${field.title}\n${parsedAnswer}\n`;
    }

    data.form_response_string = formResponseString;
    data.raw_webhook_event = body;

    if (data.landed_at) {
      data.landed_at = parseIsoDate(data.landed_at);
    }

    if (data.submitted_at) {
      data.submitted_at = parseIsoDate(data.submitted_at);
    }

    data.form_title = body.form_response.definition.title;
    delete data.answers;
    delete data.definition;

    this.$emit(data, {
      summary: JSON.stringify(data),
      id: data.token,
    });

    this.http.respond({
      status: 200,
    });
  },
  sampleEmit,
};

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
TypeformtypeformappThis component uses the Typeform app.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
FormformIdstringSelect a value from the drop down menu.

Trigger Authentication

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

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

offlineaccounts:readforms:writeforms:readimages:writeimages:readthemes:writethemes:readresponses:readresponses:writewebhooks:readwebhooks:writeworkspaces:readworkspaces:write

About Typeform

Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.

Action

Description:Create a form in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#post-%2Fmarketing%2Fv3%2Fforms%2F)
Version:0.0.6
Key:hubspot-create-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-create-form",
  name: "Create Form",
  description:
    "Create a form in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#post-%2Fmarketing%2Fv3%2Fforms%2F)",
  version: "0.0.6",
  type: "action",
  props: {
    hubspot,
    name: {
      type: "string",
      label: "Name",
      description: "The name of the form.",
    },
    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,
      createdAt: new Date(Date.now()).toISOString(),
      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.createForm({
      $,
      data,
    });

    $.export("$summary", `Successfully created 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.
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.lists.writecrm.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.deals.writecrm.schemas.quotes.readcrm.schemas.listings.writecrm.schemas.listings.readconversations.readcrm.importfilesformsforms-uploaded-filesintegration-syncoauthtimeline

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 + Typeform

Create a Form with Typeform API on Contact Updated from Hubspot API
HubSpot + Typeform
 
Try it
Create a Form with Typeform API on Deal Updated from Hubspot API
HubSpot + Typeform
 
Try it
Create a Form with Typeform API on New Blog Posts from Hubspot API
HubSpot + Typeform
 
Try it
Create a Form with Typeform API on New Companies from Hubspot API
HubSpot + Typeform
 
Try it
Create a Form with Typeform API on New Contact in List from Hubspot API
HubSpot + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Deleted Blog Posts from the HubSpot API

Emit new event for each deleted blog post.

 
Try it
New Company Property Change from the HubSpot API

Emit new event when a specified property is provided or updated on a company. See the documentation

 
Try it
New Contact Added to List from the HubSpot API

Emit new event when a contact is added to a HubSpot list. See the documentation

 
Try it
New Contact Property Change from the HubSpot API

Emit new event when a specified property is provided or updated on a contact. See the documentation

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. See the docs here

 
Try it
Create an Image with the Typeform API

Adds an image in your Typeform account. See the docs here

 
Try it
Delete an Image with the Typeform API

Deletes an image from your Typeform account. See the docs here

 
Try it
Delete Form with the Typeform API

Select a form to be deleted. See the docs here

 
Try it
Duplicate a Form with the Typeform API

Duplicates an existing form in your Typeform account and adds "(copy)" to the end of the title. See the docs here

 
Try it

Explore Other Apps

1
-
24
of
2,800+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
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.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream 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.
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.
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.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
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
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.