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 Vitel Phone API allows you to integrate a suite of telephony services into your applications, enabling you to automate calls, manage voicemails, send text messages, and track communications. Leveraging Pipedream's serverless platform, you can create workflows that react to events from Vitel Phone and connect them with hundreds of other apps to streamline processes, alert teams, log activities, or even analyze call data for insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vitel_phone: {
type: "app",
app: "vitel_phone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://billing.vitelglobal.com/vitel_incomingsms.php`,
headers: {
"accept": `application/json`,
},
params: {
username: `${this.vitel_phone.$auth.username}`,
password: `${this.vitel_phone.$auth.password}`,
line: `Line`,
startdate: `{{your_startdate}}`, //ex. 09102023
enddate: `{{your_enddate}}`, //ex. 09132023
},
})
},
})