ZeroTier

Use the easiest to manage and most widely supported network virtualization platform to connect all your devices, cloud VMs, and apps as if the whole world is one big cloud region!

Integrate the ZeroTier API with the Airtable (OAuth) API

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

Authorize Network Member with ZeroTier API on New Field from Airtable API
Airtable (OAuth) + ZeroTier
 
Try it
Authorize Network Member with ZeroTier API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + ZeroTier
 
Try it
Authorize Network Member with ZeroTier API on New or Modified Field from Airtable (OAuth) API
Airtable (OAuth) + ZeroTier
 
Try it
Authorize Network Member with ZeroTier API on New or Modified Records from Airtable (OAuth) API
Airtable (OAuth) + ZeroTier
 
Try it
Authorize Network Member with ZeroTier API on New or Modified Records in View from Airtable (OAuth) API
Airtable (OAuth) + ZeroTier
 
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 Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
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 Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Create A Network with the ZeroTier API

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

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Delete Network Member with the ZeroTier API

Delete a specific member (node) in a network. See docs here

 
Try it

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

Overview of Airtable (OAuth)

Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.

Connect Airtable (OAuth)

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: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})