Typeform

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

Integrate the Typeform API with the Icypeas API

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

Domain or Company Search with Icypeas API on New Submission from Typeform API
Typeform + Icypeas
 
Try it
Email Verification with Icypeas API on New Submission from Typeform API
Typeform + Icypeas
 
Try it
Get Single Search Result with Icypeas API on New Submission from Typeform API
Typeform + Icypeas
 
Try it
Create a Form with Typeform API on New Single Search Result from Icypeas API
Icypeas + Typeform
 
Try it
Create an Image with Typeform API on New Single Search Result from Icypeas API
Icypeas + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Single Search Result from the Icypeas API

Emit new event when a single search result comes in.

 
Try it
Domain or Company Search with the Icypeas API

Performs a search using a domain or company name as input. 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
Email Verification with the Icypeas API

Performs an email verification check. 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 Single Search Result with the Icypeas API

Retrieves a result from a single search instance. 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}`,
      },
    })
  },
})

Connect Icypeas

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