Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Adds a new prospect to a list in Klenty. See the documentation
Starts a cadence in Klenty for a specific prospect. 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 Klenty API enables automation of your sales engagement by integrating with Pipedream. With this API, you can sync leads, automate email campaigns, and manage tasks without manual intervention, creating a seamless sales workflow. By leveraging Pipedream's serverless execution model, you can set up custom triggers, actions, and data transformations between Klenty and various other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klenty: {
type: "app",
app: "klenty",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.klenty.com/apis/v1/user/${this.klenty.$auth.username}/lists`,
headers: {
"x-API-key": `${this.klenty.$auth.api_key}`,
},
params: {
listName: `YOUR_LIST_NAME`,
},
})
},
})