Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Returns a dummy phone number for a specific country and phone type. See the documentation
Validates the given phone number using Veriphone. 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 Veriphone API is your go-to tool within Pipedream for validating and standardizing phone numbers across the globe. It checks phone numbers for correctness, formats them into a standardized E.164 format, and provides carrier and country details. By integrating Veriphone API into your Pipedream workflows, you can automate processes like user verification, data cleaning for marketing campaigns, and enhance the quality of your contact databases.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
veriphone: {
type: "app",
app: "veriphone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.veriphone.io/v2/verify`,
params: {
key: `${this.veriphone.$auth.api_key}`,
phone: `+14156269682`,
},
})
},
})