Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Retrieves the result of a specific simulation from ColdStream. See the documentation
Starts a new simulation in ColdStream with specified parameters and submits the created case. 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 Diabatix ColdStream API provides automated thermal analysis capabilities, allowing users to streamline the cooling design process for various components and devices. With this API, you can automate the design of thermal systems, optimize existing cooling solutions, and simulate different scenarios to find the most effective thermal management strategy. In Pipedream, you can leverage this API to build automated workflows that integrate thermal analysis into your engineering cycles, ensuring your designs meet the necessary thermal specifications before physical prototypes are ever built.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
diabatix_coldstream: {
type: "app",
app: "diabatix_coldstream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://identity.coldstream.diabatix.com/users/me`,
headers: {
Authorization: `Bearer ${this.diabatix_coldstream.$auth.access_token}`,
"accept": `application/json`,
},
})
},
})