Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
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 Triggre API offers a gateway to interact with the Triggre platform, enabling you to automate processes, manage data, and integrate with other services. On Pipedream, you can harness this API to create powerful serverless workflows, connecting Triggre with numerous other apps to streamline operations, trigger actions based on events, and manipulate data in real-time. This empowers you to build custom, automated solutions that bridge the gap between Triggre and the rest of your tech stack.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
triggre: {
type: "app",
app: "triggre",
}
},
async run({steps, $}) {
const data = {
"name": "Test User",
"email": "test@sampledomain.com",
"visitors": 10
}
return await axios($, {
method: "post",
url: `${this.triggre.$auth.triggre_application_url}/${this.triggre.$auth.application_environment}/interfaces/rest/finaltest/finaltest`,
auth: {
username: `${this.triggre.$auth.application_username}`,
password: `${this.triggre.$auth.application_password}`,
},
data,
})
},
})