Typeform

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

Integrate the Typeform API with the Woodpecker.co API

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

Create Or Update Prospect In Campaign with Woodpecker.co API on New Submission from Typeform API
Typeform + Woodpecker.co
 
Try it
Create Or Update Prospect with Woodpecker.co API on New Submission from Typeform API
Typeform + Woodpecker.co
 
Try it
Find Prospect's email with Woodpecker.co API on New Submission from Typeform API
Typeform + Woodpecker.co
 
Try it
Stop Follow-Ups with Woodpecker.co API on New Submission from Typeform API
Typeform + Woodpecker.co
 
Try it
Create a Form with Typeform API on New Email Opened (Instant) from Woodpecker.co API
Woodpecker.co + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Email Opened (Instant) from the Woodpecker.co API

Emit new event when an email is opened see the docs here

 
Try it
New Email Sent (Instant) from the Woodpecker.co API

Emit new event when an email is sent see the docs here

 
Try it
New Follow-up After Autoreply (Instant) from the Woodpecker.co API

Emit new event when you get an autoreply and you set a date to resume follow-ups see the docs here

 
Try it
New Link Clicked (Instant) from the Woodpecker.co API

Emit new event when a prospect clicks on a link in your email see the docs here

 
Try it
Create Or Update Prospect with the Woodpecker.co API

This action creates/updates a prospect. See the docs here

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. See the docs here

 
Try it
Create Or Update Prospect In Campaign with the Woodpecker.co API

This action creates/updates a prospect in a campaign. See the docs here

 
Try it
Create an Image with the Typeform API

Adds an image in your Typeform account. See the docs here

 
Try it
Find Prospect's email with the Woodpecker.co API

This action searches a specific prospect. 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 Woodpecker.co

The Woodpecker.co API lets you automate your email outreach and follow-up processes. With it, you can manage contacts, campaigns, and emails programmatically, creating a seamless bridge between your email campaigns and your data. This API, integrated with Pipedream, unlocks powerful workflows that can save time, personalize communication at scale, and keep your data in sync across various platforms.

Connect Woodpecker.co

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    woodpecker_co: {
      type: "app",
      app: "woodpecker_co",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.woodpecker.co/rest/v1/campaign_list`,
      auth: {
        username: `${this.woodpecker_co.$auth.api_key}`,
        password: ``,
      },
    })
  },
})