Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Emit new event when a conversion job has completed. See the documentation
Emit new event when a file has been converted successfully. See the documentation
Emit new event as soon as a conversion job has been completed. See the documentation
Creates a file from the provided content. See the documentation
Finds the file that has been processed under the specified job id. See the documentation
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.
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}`,
},
})
},
})
The Zamzar API on Pipedream provides powerful file conversion capabilities, allowing you to easily automate the process of converting files between different formats. With Pipedream's serverless platform, you can set up workflows that trigger conversions, handle the completed files, and integrate with other services for a seamless automation experience. From document conversion for data analysis to prepping media files for different platforms, Zamzar's API coupled with Pipedream's robust functionality opens up a world of possibilities for streamlining tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zamzar: {
type: "app",
app: "zamzar",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.zamzar.com/v1/account`,
auth: {
username: `${this.zamzar.$auth.api_key}`,
password: ``,
},
})
},
})