Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Creates a new contact for requesting testimonials. See the documentation
Retrieves a list of testimonials received. 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 Endorsal API provides a way to programmatically manage and showcase customer testimonials. With Pipedream, you can automate the collection and display of endorsements, sync these testimonials with other marketing tools, and trigger actions based on new reviews. This seamless integration enables you to leverage customer feedback effectively to boost your brand's credibility and visibility.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
endorsal: {
type: "app",
app: "endorsal",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.endorsal.io/v1/testimonials`,
headers: {
Authorization: `Bearer ${this.endorsal.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})