Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Emit new event when a new run is created in Seqera. See the documentation
Creates a new compute environment in Seqera Tower. See the documentation
Creates a new pipeline action in Seqera. 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 Seqera API serves as a connection point for handling complex data pipeline and workflow orchestration tasks within the life sciences domain. With this API, you can manage workflows, monitor pipeline executions, and control job submissions. Leveraging Pipedream, you can seamlessly integrate Seqera with various services to automate processes, react to pipeline events, or synchronize data across platforms, thus enhancing efficiency in bioinformatics analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
seqera: {
type: "app",
app: "seqera",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tower.nf/user-info`,
headers: {
Authorization: `Bearer ${this.seqera.$auth.api_token}`,
},
})
},
})