Typebot

Typebot gives you powerful blocks to create unique chat experiences. Embed them anywhere on your web/mobile apps and start collecting results like magic.

Integrate the Typebot API with the ExpoFP API

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

Add Exhibitor with ExpoFP API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + ExpoFP
 
Try it
Add Exhibitor Booth with ExpoFP API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + ExpoFP
 
Try it
Get Booth with ExpoFP API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + ExpoFP
 
Try it
Get Exhibitor with ExpoFP API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + ExpoFP
 
Try it
List All Events with ExpoFP API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + ExpoFP
 
Try it
New Zapier Step Triggered (Instant) from the Typebot API

Emit new event when a zapier step is triggered. See the docs

 
Try it
Add Exhibitor with the ExpoFP API

Adds an exhibitor. See the documentation

 
Try it
Add Exhibitor Booth with the ExpoFP API

Adds an exhibitor booth. See the documentation

 
Try it
Get Booth with the ExpoFP API

Get details of a booth. See the documentation

 
Try it
Get Exhibitor with the ExpoFP API

Get details of an exhibitor. See the documentation

 
Try it
List All Events with the ExpoFP API

List all events. See the documentation

 
Try it

Overview of Typebot

Typebot is a conversational form builder that allows you to create interactive and engaging forms for data collection. With Typebot API on Pipedream, you can automate the processing of form submissions, synchronize data with other services, and trigger customized workflows. Utilize the data gathered from Typebot in real-time, enrich it with other services, and streamline processes like lead generation, surveys, and feedback collection.

Connect Typebot

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: {
    typebot: {
      type: "app",
      app: "typebot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://typebot.io/api/users/me`,
      headers: {
        Authorization: `Bearer ${this.typebot.$auth.api_token}`,
      },
    })
  },
})

Overview of ExpoFP

The ExpoFP API enables developers to integrate floor plan management and interaction within their applications. With this API, you can access detailed information about exhibition spaces, including booth details, exhibitor information, and floor plan layouts. When you combine ExpoFP with Pipedream's serverless integration and compute platform, you can automate event management tasks, synchronize floor plan data with other systems, and enhance visitor engagement by connecting with CRM or marketing automation tools.

Connect ExpoFP

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    expofp: {
      type: "app",
      app: "expofp",
    }
  },
  async run({steps, $}) {
    const data = {
      "token": `${this.expofp.$auth.api_token}`,
    }
    return await axios($, {
      method: "post",
      url: `https://app.expofp.com/api/v1/list-events`,
      headers: {
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})