Typeform

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

Integrate the Typeform API with the Airslate API

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

Create a New Template with Airslate API on New Submission from Typeform API
Typeform + Airslate
 
Try it
Create New Organization with Airslate API on New Submission from Typeform API
Typeform + Airslate
 
Try it
Update Template with Airslate API on New Submission from Typeform API
Typeform + Airslate
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Create a New Template with the Airslate API

Create a new reusable document package that contains fillable documents and forms in the specified organization. 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
Create New Organization with the Airslate API

Creates a new organization in airslate with optional settings. 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
Update Template with the Airslate API

Update a specified template in airSlate. 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}`,
      },
    })
  },
})

Overview of Airslate

The Airslate API enables automation of document workflows, including creation, updating, and tracking of e-signature processes. In Pipedream, you can leverage this API to streamline document handling, automate data syncing between apps, and manage notifications related to your digital documents. Utilizing Airslate's capabilities within Pipedream workflows allows for easy integration with other services, enhancing productivity and minimizing manual tasks.

Connect Airslate

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: {
    airslate: {
      type: "app",
      app: "airslate",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airslate.io/v1/organizations`,
      headers: {
        Authorization: `Bearer ${this.airslate.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})