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 Cometly API allows you to track ad performance and automate the analysis and optimization of advertising campaigns. With Pipedream, you can create serverless workflows that interact with the Cometly API to streamline campaign management tasks, such as retrieving campaign metrics, updating ad spend, and generating performance reports. Using Cometly in conjunction with Pipedream’s robust integration capabilities, you can connect to numerous other services to enrich your ads data, automate actions based on performance thresholds, and synchronize your marketing efforts across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cometly: {
type: "app",
app: "cometly",
}
},
async run({steps, $}) {
const data = {
"event_name": `developer`,
"email": `sergio@pipekit.pro`,
"comet_token": `ddffd8d8338383883838484843838388d8dfaf`,
"ip": `123.123.123.123`,
"event_time": `test`,
}
return await axios($, {
method: "post",
url: `https://app.cometly.com/public-api/v1/events`,
headers: {
Authorization: `Bearer ${this.cometly.$auth.api_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})