Typeform

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

Integrate the Typeform API with the Zonka Feedback API

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

List Surveys with Zonka Feedback API on New Submission from Typeform API
Typeform + Zonka Feedback
 
Try it
Send Email Survey with Zonka Feedback API on New Submission from Typeform API
Typeform + Zonka Feedback
 
Try it
Send SMS Survey with Zonka Feedback API on New Submission from Typeform API
Typeform + Zonka Feedback
 
Try it
Create a Form with Typeform API on New Survey Response from Zonka Feedback API
Zonka Feedback + Typeform
 
Try it
Create an Image with Typeform API on New Survey Response from Zonka Feedback API
Zonka Feedback + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Survey Response from the Zonka Feedback API

Emit new event for each survey response. See docs

 
Try it
List Surveys with the Zonka Feedback API

List surveys from Zonka Feedback. You can filter surveys based on their status.

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. 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
Send Email Survey with the Zonka Feedback API

Send a survey by email. See docs

 
Try it
Delete an Image with the Typeform API

Deletes an image from your Typeform account. 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 Zonka Feedback

Zonka Feedback API allows for the collection and management of customer feedback data. Through Pipedream, you can automate the process of capturing this feedback, analyze the data for insights, and integrate with other services to act on the information collected. With Pipedream's serverless platform, you can create complex workflows that trigger actions in other apps, based on feedback received, without writing extensive code.

Connect Zonka Feedback

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: {
    zonka_feedback: {
      type: "app",
      app: "zonka_feedback",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://apis.zonkafeedback.com/users`,
      headers: {
        "Z-API-TOKEN": `${this.zonka_feedback.$auth.auth_token}`,
      },
    })
  },
})