← HubSpot + Smaily integrations

Run Automation Workflow with Smaily API on New or Updated Deal from HubSpot API

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

Trigger workflow on
New or Updated Deal from the HubSpot API
Next, do this
Run Automation Workflow with the Smaily 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 HubSpot trigger and Smaily 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 or Updated Deal trigger
    1. Connect your HubSpot account
    2. Configure timer
    3. Configure info
    4. Optional- Select one or more Additional properties to retrieve
    5. Optional- Select a Pipeline
    6. Optional- Select a Stage
    7. Optional- Configure New Only
  3. Configure the Run Automation Workflow action
    1. Connect your Smaily account
    2. Select a Automation Workflow ID
    3. Select a Segment ID
    4. Select one or more Emails
  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 event for each new or updated deal in Hubspot
Version:0.0.9
Key:hubspot-new-or-updated-deal

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.

Trigger Code

import common from "../common/common.mjs";
import {
  DEFAULT_LIMIT, DEFAULT_DEAL_PROPERTIES,
} from "../../common/constants.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "hubspot-new-or-updated-deal",
  name: "New or Updated Deal",
  description: "Emit new event for each new or updated deal in Hubspot",
  version: "0.0.9",
  dedupe: "unique",
  type: "source",
  props: {
    ...common.props,
    info: {
      type: "alert",
      alertType: "info",
      content: `Properties:\n\`${DEFAULT_DEAL_PROPERTIES.join(", ")}\``,
    },
    properties: {
      propDefinition: [
        common.props.hubspot,
        "dealProperties",
        () => ({
          excludeDefaultProperties: true,
        }),
      ],
      label: "Additional properties to retrieve",
    },
    pipeline: {
      propDefinition: [
        common.props.hubspot,
        "dealPipeline",
      ],
      description: "Filter deals by pipeline",
      optional: true,
    },
    stage: {
      propDefinition: [
        common.props.hubspot,
        "stages",
        (c) => ({
          pipeline: c.pipeline,
        }),
      ],
      type: "string",
      label: "Stage",
      description: "Filter deals by stage",
      optional: true,
    },
    newOnly: {
      type: "boolean",
      label: "New Only",
      description: "Emit events only for new deals",
      default: false,
      optional: true,
    },
  },
  methods: {
    ...common.methods,
    getTs(deal) {
      return this.newOnly
        ? Date.parse(deal.createdAt)
        : Date.parse(deal.updatedAt);
    },
    generateMeta(deal) {
      const {
        id,
        properties,
      } = deal;
      const ts = this.getTs(deal);
      return {
        id: this.newOnly
          ? id
          : `${id}-${ts}`,
        summary: properties.dealname,
        ts,
      };
    },
    isRelevant(deal, updatedAfter) {
      return this.getTs(deal) > updatedAfter;
    },
    getParams() {
      const { properties = [] } = this;
      const params = {
        data: {
          limit: DEFAULT_LIMIT,
          sorts: [
            {
              propertyName: "hs_lastmodifieddate",
              direction: "DESCENDING",
            },
          ],
          properties: [
            ...DEFAULT_DEAL_PROPERTIES,
            ...properties,
          ],
        },
        object: "deals",
      };
      if (this.pipeline) {
        params.data.filters = [
          {
            propertyName: "pipeline",
            operator: "EQ",
            value: this.pipeline,
          },
        ];
        if (this.stage) {
          params.data.filters.push({
            propertyName: "dealstage",
            operator: "EQ",
            value: this.stage,
          });
        }
      }
      return params;
    },
    async processResults(after, params) {
      await this.searchCRM(params, after);
    },
  },
  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
HubSpothubspotappThis component uses the HubSpot app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer
Additional properties to retrievepropertiesstring[]Select a value from the drop down menu.
PipelinepipelinestringSelect a value from the drop down menu.
StagestagestringSelect a value from the drop down menu.
New OnlynewOnlyboolean

Emit events only for new deals

Trigger 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.

Action

Description:Send Automation Workflow. [See docs here](https://smaily.com/help/api/automations-2/autoresponder)
Version:0.0.1
Key:smaily-run-automation-workflow

Smaily Overview

The Smaily API allows for email marketing automation, where you can manage contacts, templates, and send out campaigns. With Pipedream's power to integrate a multitude of apps, you can craft custom workflows that react to events from various services, and then use Smaily to send targeted communications, all in a serverless environment. This seamless integration can be a game-changer for marketers seeking to enhance their audience engagement through personalized and timely emails based on user behavior or data.

Action Code

import { defineAction } from "@pipedream/types";
import smaily from "../../app/smaily.app.mjs";
export default defineAction({
    name: "Run Automation Workflow",
    version: "0.0.1",
    key: "smaily-run-automation-workflow",
    description: "Send Automation Workflow. [See docs here](https://smaily.com/help/api/automations-2/autoresponder)",
    type: "action",
    props: {
        smaily,
        automationWorkflowId: {
            propDefinition: [
                smaily,
                "automationWorkflowId",
            ],
        },
        segmentId: {
            propDefinition: [
                smaily,
                "segmentId",
            ],
        },
        emails: {
            propDefinition: [
                smaily,
                "emails",
                (c) => ({
                    segmentId: c.segmentId,
                }),
            ],
        },
    },
    async run({ $ }) {
        const parsedEmails = !Array.isArray(this.emails)
            ? JSON.parse(this.emails)
            : this.emails;
        const response = await this.smaily.runAutomationWorkflow({
            $,
            data: {
                autoresponder: this.automationWorkflowId,
                addresses: parsedEmails.map((email) => ({
                    email,
                })),
            },
        });
        if (response.code < 300) {
            $.export("$summary", "Successfully ran workflow"); // this request doesn't return an 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
SmailysmailyappThis component uses the Smaily app.
Automation Workflow IDautomationWorkflowIdstringSelect a value from the drop down menu.
Segment IDsegmentIdstringSelect a value from the drop down menu.
Emailsemailsstring[]Select a value from the drop down menu.

Action Authentication

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

To retrieve your API passwords,

  • Navigate to your Smaily account and sign in
  • Go to Preferences > Integrations > API PASSWORDS

About Smaily

We’ll give you the easiest of tools to send beautiful newsletters. Start your email marketing journey to success!

More Ways to Connect Smaily + HubSpot

Run Automation Workflow with Smaily API on Company Updated from HubSpot API
HubSpot + Smaily
 
Try it
Run Automation Workflow with Smaily API on Contact Updated from HubSpot API
HubSpot + Smaily
 
Try it
Run Automation Workflow with Smaily API on Deal Updated from HubSpot API
HubSpot + Smaily
 
Try it
Run Automation Workflow with Smaily API on Deleted Blog Posts from HubSpot API
HubSpot + Smaily
 
Try it
Run Automation Workflow with Smaily API on Line Item Updated from HubSpot API
HubSpot + Smaily
 
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 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
New Custom Object Property Change from the HubSpot API

Emit new event when a specified property is provided or updated on a custom object.

 
Try it
New Deal In Stage from the HubSpot API

Emit new event for each new deal in a stage.

 
Try it
Add Contact to List with the HubSpot API

Adds a contact to a specific static list. See the documentation

 
Try it
Batch Create or Update Contact with the HubSpot API

Create or update a batch of contacts by its ID or email. See the documentation

 
Try it
Create Associations with the HubSpot API

Create associations between objects. See the documentation

 
Try it
Create Communication with the HubSpot API

Create a WhatsApp, LinkedIn, or SMS message. See the documentation

 
Try it
Create Company with the HubSpot API

Create a company in Hubspot. See the documentation

 
Try it

Explore Other Apps

1
-
0
of
2,700+
apps by most popular