Typeform

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

Integrate the Typeform API with the SegMetrics API

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

Create Or Update Contact with SegMetrics API on New Submission from Typeform API
Typeform + SegMetrics
 
Try it
Create Or Update Order with SegMetrics API on New Submission from Typeform API
Typeform + SegMetrics
 
Try it
Create Or Update Subscription with SegMetrics API on New Submission from Typeform API
Typeform + SegMetrics
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Create Or Update Contact with the SegMetrics API

Create or update a contact. See documentation 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 Order with the SegMetrics API

Creates a client. See documentation here

 
Try it
Create an Image with the Typeform API

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

 
Try it
Create Or Update Subscription with the SegMetrics API

Create or update a subscription. See documentation 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 SegMetrics

The SegMetrics API grants programmatic access to SegMetrics data, allowing users to extract detailed insights about their marketing efforts. With it, you can automate the retrieval of conversion data, contact lists, tags, and more, to better understand your marketing funnel performance. Leveraging Pipedream's processing capabilities, you can create intricate workflows that respond to this data in real-time, running logic or actions contingent on the insights you gain from SegMetrics.

Connect SegMetrics

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: {
    segmetrics: {
      type: "app",
      app: "segmetrics",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.segmetrics.io/${this.segmetrics.$auth.account_id}/contact/{{YOUR_CONTACT_ID}}`,
      headers: {
        "Authorization": `${this.segmetrics.$auth.api_key}`,
      },
    })
  },
})