Typeform

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

Integrate the Typeform API with the HeroBot Chatbot Marketing API

Setup the Typeform API trigger to run a workflow which integrates with the HeroBot Chatbot Marketing API. Pipedream's integration platform allows you to integrate Typeform and HeroBot Chatbot Marketing remarkably fast. Free for developers.

Create Custom Field with HeroBot Chatbot Marketing API on New Submission from Typeform API
Typeform + HeroBot Chatbot Marketing
 
Try it
Create User with HeroBot Chatbot Marketing API on New Submission from Typeform API
Typeform + HeroBot Chatbot Marketing
 
Try it
Send Message with HeroBot Chatbot Marketing API on New Submission from Typeform API
Typeform + HeroBot Chatbot Marketing
 
Try it
Create a Form with Typeform API on New Tag Added from HeroBot Chatbot Marketing API
HeroBot Chatbot Marketing + Typeform
 
Try it
Create a Form with Typeform API on New User Created from HeroBot Chatbot Marketing API
HeroBot Chatbot Marketing + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Tag Added from the HeroBot Chatbot Marketing API

Emit new event when a new tag is added to a specific user.

 
Try it
New User Created from the HeroBot Chatbot Marketing API

Emit new event when a new user is created.

 
Try it
Create Custom Field with the HeroBot Chatbot Marketing API

Create a new custom field in the HeroBot account. 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 User with the HeroBot Chatbot Marketing API

Saves pertinent information about a new user. See the documentation

 
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

Overview of Typeform

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.

Connect Typeform

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    typeform: {
      type: "app",
      app: "typeform",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.typeform.com/me`,
      headers: {
        Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of HeroBot Chatbot Marketing

The HeroBot Chatbot Marketing API lets you interact with the HeroBot platform to manage and deliver chatbot services. With this API, you can automate conversations, broadcast messages, and gather insights from chatbot interactions. Pipedream's serverless platform enables you to create workflows integrating HeroBot with other apps, triggering actions based on events, and processing data without managing infrastructure.

Connect HeroBot Chatbot Marketing

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    herobot_chatbot_marketing: {
      type: "app",
      app: "herobot_chatbot_marketing",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://my.herobot.app/api/accounts/me`,
      headers: {
        "X-ACCESS-TOKEN": `${this.herobot_chatbot_marketing.$auth.api_token}`,
      },
    })
  },
})