Typeform

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

Integrate the Typeform API with the ExpoFP API

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

Add Exhibitor Booth with ExpoFP API on New Submission from Typeform API
Typeform + ExpoFP
 
Try it
Add Exhibitor with ExpoFP API on New Submission from Typeform API
Typeform + ExpoFP
 
Try it
Get Booth with ExpoFP API on New Submission from Typeform API
Typeform + ExpoFP
 
Try it
Get Exhibitor with ExpoFP API on New Submission from Typeform API
Typeform + ExpoFP
 
Try it
List All Events with ExpoFP API on New Submission from Typeform API
Typeform + ExpoFP
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Add Exhibitor with the ExpoFP API

Adds an exhibitor. 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
Add Exhibitor Booth with the ExpoFP API

Adds an exhibitor booth. 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
Get Booth with the ExpoFP API

Get details of a booth. See the documentation

 
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 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,
    })
  },
})