Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Delete integration for the authenticated user. See the documentation
Get the authenticated user on Codacy. 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 Codacy API lends itself to automated code review and analysis within Pipedream's serverless platform. By wielding this API, you can craft workflows that trigger on code pushes, scrutinize code quality, enforce coding standards, and seamlessly integrate with other tools for broader development process automation. It's a gateway to embed code quality checks into your CI/CD pipeline, get real-time alerts, and keep your codebase healthy, all within the Pipedream ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
codacy: {
type: "app",
app: "codacy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.codacy.com/api/v3/user`,
headers: {
"Accept": `application/json`,
"api-token": `${this.codacy.$auth.api_token}`,
},
})
},
})