Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Get the details of a particular document. See the documentation
Retrieves the filled field data for a particular document. 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}`,
},
})
},
})
Zoho Sign API lets you automate document signing processes. Integrate with Pipedream to create or manage documents, send them for signatures, and track status updates in real-time. Sync data with other apps, trigger workflows based on document actions, or automate follow-ups once signatures are received.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_sign: {
type: "app",
app: "zoho_sign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.zoho_sign.$auth.base_api_uri}/api/v1/folders`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_sign.$auth.oauth_access_token}`,
},
})
},
})