Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
This action creates and schedules a postcard for delivery. See the documentation
Creates a new contact within the EchtPost app. 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 EchtPost Postcards API allows you to programmatically send real, physical postcards. With Pipedream's capabilities, you can automate the sending of these postcards in response to various triggers or events. Imagine crafting personalized thank you notes to customers, sending holiday greetings, or running a postcard marketing campaign completely automated with Pipedream's serverless platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
echtpost_postcards: {
type: "app",
app: "echtpost_postcards",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.echtpost.de/v1/contacts`,
params: {
apikey: `${this.echtpost_postcards.$auth.api_key}`,
},
})
},
})