View as Markdown
Diabatix ColdStream icon

Diabatix ColdStream ACTION

Run Simulation

Starts a new simulation in ColdStream with specified parameters and submits the created case. See the documentation
  • Action
  • Writes data
  • Destructive
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Diabatix ColdStream account once, then configure and run Run Simulation from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "diabatix_coldstream-run-simulation",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    diabatix_coldstream: { authProvisionId: "apn_xxxxxxx" },
    organizationId: 10,
    projectId: 10,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Run Simulation inputs
Property Type Description
organizationId Organization ID integer
The ID of the organization in ColdStream.
Required Dynamic
projectId Project ID integer
The ID of the project in ColdStream.
Required Dynamic
caseName Case Name string
The name of the case.
Required
credits Credits integer
The credits to the case.
Required
resolution Resolution string
The resolution of the case.
Required
estimatedTime Estimated Time string
The estimated time for the case.
Optional
processingMethod Processing Method string
The method of the case.
Optional
priorityLevel Priority Level string
The priority of the case.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
diabatix_coldstream-run-simulation
Version
0.0.2
App
Diabatix ColdStream
Authentication
OAuth
Read-only
No
Destructive
Yes
Open world
Yes