Integration platform for developers
Exposes an HTTP API for scheduling messages to be emitted at a future time
Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.
Emit new event when a specific project has been upgraded or edited in ColdStream.
Emit new event at a specified time before a card is due.
Emit new event when a simulation has been successfully completed.
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
Updates an existing project with new parameters or data in ColdStream. See the documentation
Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.
Some examples of applications you can build using the Pipedream API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipedream: {
type: "app",
app: "pipedream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipedream.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.pipedream.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})