Workflow Js Scripts

9 endpoints

Get script for a workflow node

Get the JavaScript script configuration for a specific workflow node, including all versions

Parameters
workflow_idrequired
stringWorkflow ID (UUID)
node_idrequired
stringNode ID to get script for
Responses
200Script with versions
400Invalid request
401Authentication required
404Script not found
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.workflow-js-scripts.list({
8 node_id: 'example',
9});
10
11console.log(result);