← Instantly + H-supertools Analytics Tool integrations

Create Report with H-supertools Analytics Tool API on New Event in Instantly (Instant) from Instantly API

Pipedream makes it easy to connect APIs for H-supertools Analytics Tool, Instantly and 2,700+ other apps remarkably fast.

Trigger workflow on
New Event in Instantly (Instant) from the Instantly API
Next, do this
Create Report with the H-supertools Analytics Tool 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 Instantly trigger and H-supertools Analytics Tool 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 Event in Instantly (Instant) trigger
    1. Connect your Instantly account
    2. Optional- Select a Campaign ID
    3. Optional- Select a Event Type
  3. Configure the Create Report action
    1. Connect your H-supertools Analytics Tool account
    2. Configure Domain
    3. Configure Email
    4. Configure Exclude Bots
    5. Optional- Configure Exclude Params
    6. Optional- Configure Exclude IPs
    7. Select a Privacy
  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 when an activity occurs in your Instantly workspace.
Version:0.0.1
Key:instantly-new-event-instant

Trigger Code

import instantly from "../../instantly.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  key: "instantly-new-event-instant",
  name: "New Event in Instantly (Instant)",
  description: "Emit new event when an activity occurs in your Instantly workspace.",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    instantly,
    http: "$.interface.http",
    db: "$.service.db",
    campaignId: {
      propDefinition: [
        instantly,
        "campaignId",
      ],
      optional: true,
    },
    eventType: {
      propDefinition: [
        instantly,
        "eventType",
      ],
      optional: true,
    },
  },
  methods: {
    _getHookId() {
      return this.db.get("hookId");
    },
    _setHookId(hookId) {
      this.db.set("hookId", hookId);
    },
  },
  hooks: {
    async activate() {
      const response = await this.instantly.createWebhook({
        data: {
          hookUrl: this.http.endpoint,
          event_type: this.eventType,
          campaign: this.campaignId,
        },
      });
      this._setHookId(response.id);
    },
    async deactivate() {
      const webhookId = this._getHookId();
      await this.instantly.deleteWebhook({
        data: {
          hook_id: webhookId,
        },
      });
    },
  },
  async run({ body }) {
    const ts = Date.parse(new Date());
    this.$emit(body, {
      id: `${body.resource}-${ts}`,
      summary: `New event from ${body.lead_email} for campaign ${body.campaign_name}`,
      ts: ts,
    });
  },
  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
InstantlyinstantlyappThis component uses the Instantly 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.
Campaign IDcampaignIdstringSelect a value from the drop down menu.
Event TypeeventTypestringSelect a value from the drop down menu:{ "label": "Email Sent", "value": "email_sent" }{ "label": "Email Bounced", "value": "email_bounced" }{ "label": "Email Opened", "value": "email_opened" }{ "label": "Email Link Clicked", "value": "email_link_clicked" }{ "label": "Reply Received", "value": "reply_received" }{ "label": "Lead Unsubscribed", "value": "lead_unsubscribed" }{ "label": "Campaign Completed", "value": "campaign_completed" }{ "label": "Account Error", "value": "account_error" }{ "label": "Lead Not Interested", "value": "lead_not_interested" }{ "label": "Lead Neutral", "value": "lead_neutral" }{ "label": "Lead Meeting Booked", "value": "lead_meeting_booked" }{ "label": "Lead Meeting Completed", "value": "lead_meeting_completed" }{ "label": "Lead Closed", "value": "lead_closed" }{ "label": "Lead Out of Office", "value": "lead_out_of_office" }{ "label": "Lead Wrong Person", "value": "lead_wrong_person" }

Trigger Authentication

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

About Instantly

Instantly helps you find warm leads, scale email campaigns, reach primary inboxes, engage smarter and win more with AI.

Action

Description:Create a new analytics report for a specified website. [See the documentation](https://analytics.h-supertools.com/developers/websites)
Version:0.0.1
Key:h_supertools_analytics_tool-create-report

H-supertools Analytics Tool Overview

The H-supertools Analytics Tool API provides insights about SEO and online marketing. With Pipedream, you can leverage these insights in automated workflows. Imagine triggering actions based on keyword volumes, tracking your website's position for certain keywords, or getting alerts when your SEO performance changes. Pipedream's serverless platform lets you connect the H-supertools Analytics Tool with various other apps and services, enabling a host of data-driven applications.

Action Code

import { PRIVACY_OPTION } from "../../common/constants.mjs";
import app from "../../h_supertools_analytics_tool.app.mjs";

export default {
  key: "h_supertools_analytics_tool-create-report",
  name: "Create Report",
  version: "0.0.1",
  description: "Create a new analytics report for a specified website. [See the documentation](https://analytics.h-supertools.com/developers/websites)",
  type: "action",
  props: {
    app,
    domain: {
      type: "string",
      label: "Domain",
      description: "The domain name.",
    },
    email: {
      type: "boolean",
      label: "Email",
      description: "Periodic email reports.",
      default: false,
    },
    excludeBots: {
      type: "boolean",
      label: "Exclude Bots",
      description: "Exclude common bots from being tracked.",
      default: false,
    },
    excludeParams: {
      type: "string",
      label: "Exclude Params",
      description: "Exclude URL query params from being tracked. One per line.",
      optional: true,
    },
    excludeIps: {
      type: "string",
      label: "Exclude IPs",
      description: "Exclude IPs from being tracked. One per line.",
      optional: true,
    },
    privacy: {
      type: "integer",
      label: "Privacy",
      description: "Status page privacy.",
      options: Object.values(PRIVACY_OPTION),
      reloadProps: true,
    },
  },
  async additionalProps() {
    const props = {};
    if (this.privacy === PRIVACY_OPTION.PASSWORD.value) {
      props.password = {
        type: "string",
        label: "Password",
        description: "The password for the statistics page.",
      };
    }
    return props;
  },
  async run({ $ }) {
    const {
      app,
      email,
      excludeBots,
      excludeParams,
      excludeIps,
      privacy,
      ...data
    } = this;

    const response = await app.createReport({
      $,
      data: {
        ...data,
        email: +email,
        exclude_bots: +excludeBots,
        exclude_params: excludeParams,
        exclude_ips: excludeIps,
        privacy: privacy - 1,
      },
    });

    $.export("$summary", `A new report with id: ${response.data.id} was successfully created!`);
    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
H-supertools Analytics ToolappappThis component uses the H-supertools Analytics Tool app.
Domaindomainstring

The domain name.

Emailemailboolean

Periodic email reports.

Exclude BotsexcludeBotsboolean

Exclude common bots from being tracked.

Exclude ParamsexcludeParamsstring

Exclude URL query params from being tracked. One per line.

Exclude IPsexcludeIpsstring

Exclude IPs from being tracked. One per line.

PrivacyprivacyintegerSelect a value from the drop down menu:{ "label": "Public", "value": 1 }{ "label": "Private", "value": 2 }{ "label": "Password", "value": 3 }

Action Authentication

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

To retrieve your API Key,

  • Navigate to your H-supertools Analytics Tool account and sign in
  • Go to “Account” > “API”

About H-supertools Analytics Tool

Track your visitors in realtime, without compromising their privacy.

More Ways to Connect H-supertools Analytics Tool + Instantly

Add Lead to Campaign with Instantly API on New Report Generated from H-supertools Analytics Tool API
H-supertools Analytics Tool + Instantly
 
Try it
Update Lead Status with Instantly API on New Report Generated from H-supertools Analytics Tool API
H-supertools Analytics Tool + Instantly
 
Try it
Add Tags to Campaign with Instantly API on New Report Generated from H-supertools Analytics Tool API
H-supertools Analytics Tool + Instantly
 
Try it
Retrieve Report Data with H-supertools Analytics Tool API on New Event in Instantly (Instant) from Instantly API
Instantly + H-supertools Analytics Tool
 
Try it
Create Report with H-supertools Analytics Tool API on New Email Received from Instantly API
Instantly + H-supertools Analytics Tool
 
Try it
New Background Job Completed from the Instantly API

Emit new event when a new background job has completed. See the documentation

 
Try it
New Email Received from the Instantly API

Emit new event when a new email is received. See the documentation

 
Try it
New Event in Instantly (Instant) from the Instantly API

Emit new event when an activity occurs in your Instantly workspace.

 
Try it
New Lead Created from the Instantly API

Emit new event when a new lead is created. See the documentation

 
Try it
New Report Generated from the H-supertools Analytics Tool API

Emit new event when a new analytics report is created.

 
Try it
Add Leads to Campaign with the Instantly API

Adds a lead or leads to a campaign for tracking or further actions. See the documentation

 
Try it
Add Tags to Campaign with the Instantly API

Adds tags to a specific campaign. See the documentation

 
Try it
Update Lead Status with the Instantly API

Updates the interest status of a lead in a campaign. See the documentation

 
Try it
Create Report with the H-supertools Analytics Tool API

Create a new analytics report for a specified website. See the documentation

 
Try it
Retrieve Report Data with the H-supertools Analytics Tool API

Fetch the analytics report data for a specified website. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,700+
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.
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.
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
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.