Typeform

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

Integrate the Typeform API with the ZeroTier API

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

Authorize Network Member with ZeroTier API on New Submission from Typeform API
Typeform + ZeroTier
 
Try it
Create A Network with ZeroTier API on New Submission from Typeform API
Typeform + ZeroTier
 
Try it
Delete Network Member with ZeroTier API on New Submission from Typeform API
Typeform + ZeroTier
 
Try it
Get Account Status with ZeroTier API on New Submission from Typeform API
Typeform + ZeroTier
 
Try it
Get Network Node with ZeroTier API on New Submission from Typeform API
Typeform + ZeroTier
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Node Join from the ZeroTier API

Emit new event when a node joins a network. See docs here

 
Try it
New Node Left from the ZeroTier API

Emit new event when a node left a network. See docs here

 
Try it
New Node Offline from the ZeroTier API

Emit new event for each offline node. See docs here

 
Try it
New Node Online from the ZeroTier API

Emit new event for each online node. See docs here

 
Try it
Authorize Network Member with the ZeroTier API

Authorize a specific member (node) in a network. See 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 A Network with the ZeroTier API

Create a new network on your ZeroTier account. See docs here

 
Try it
Create an Image with the Typeform API

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

 
Try it
Delete Network Member with the ZeroTier API

Delete a specific member (node) in a network. See 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 ZeroTier

ZeroTier is a smart Ethernet switch for Earth. It's a global distributed network that connects devices, VMs, and apps with a simple, secure, and ubiquitous network fabric. The ZeroTier API allows you to manage networks, members, and access rules programmatically. With Pipedream's capabilities, you can automate interactions with ZeroTier, integrating it seamlessly with other apps and services to orchestrate complex workflows, react to events, or sync data across platforms.

Connect ZeroTier

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