Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Returns a list of findings for a specified deployment. See the documentation
Returns a list of projects for a given deployment slug. 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 Semgrep API enables developers to integrate powerful static code analysis within their workflows on Pipedream. Semgrep scans codebases for bugs, security issues, and code standards, making it a vital tool for maintaining code quality. On Pipedream, you can automate code reviews, enforce coding standards, and trigger alerts or actions based on scan results. By connecting Semgrep to Pipedream, you can streamline your CI/CD pipelines, notify teams of critical issues, and even auto-fix problems under certain conditions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
semgrep: {
type: "app",
app: "semgrep",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://semgrep.dev/api/v1/deployments`,
headers: {
Authorization: `Bearer ${this.semgrep.$auth.api_token}`,
},
})
},
})