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 Crowdin API offers a way to streamline localization processes by enabling automated interactions with Crowdin projects. With this API on Pipedream, you can create workflows that manage translations, coordinate with translators, and sync localized content across your apps. It becomes easy to upload new source files, download translations, manage projects, and crowdsource translations, all within the Pipedream ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
crowdin: {
type: "app",
app: "crowdin",
}
},
async run({steps, $}) {
return await axios($, {
// If you are using Crowdin Enterprise, your API URL
// should be https://{your_org_domain}.api.crowdin.com/
url: `https://api.crowdin.com/api/v2/user`,
headers: {
Authorization: `Bearer ${this.crowdin.$auth.oauth_access_token}`,
},
})
},
})