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 Chargify API enables seamless integration of subscription billing, management, and reporting functionalities. With Chargify, you can automate the creation and management of customer subscriptions, handle invoicing, apply taxes, and track analytics related to your billing processes. It's a powerful tool for businesses with recurring revenue models to keep their billing systems in sync with other business operations, reducing manual workload and increasing efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chargify: {
type: "app",
app: "chargify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.chargify.$auth.subdomain}.chargify.com/subscriptions.json`,
headers: {
"content-type": `application/json`,
"accept": `application/json`,
},
auth: {
username: `${this.chargify.$auth.api_key}`,
password: ``,
},
})
},
})