Typebot gives you powerful blocks to create unique chat experiences. Embed them anywhere on your web/mobile apps and start collecting results like magic.
Emit new event when a zapier step is triggered. See the docs
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format documentation.
Typebot is a conversational form builder that allows you to create interactive and engaging forms for data collection. With Typebot API on Pipedream, you can automate the processing of form submissions, synchronize data with other services, and trigger customized workflows. Utilize the data gathered from Typebot in real-time, enrich it with other services, and streamline processes like lead generation, surveys, and feedback collection.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typebot: {
type: "app",
app: "typebot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://typebot.io/api/users/me`,
headers: {
Authorization: `Bearer ${this.typebot.$auth.api_token}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})