Workflow Instances

2 endpoints

Get workflow instance

Get a workflow execution instance by ID

Parameters
idrequired
stringInstance ID
Responses
200Successfully retrieved instance
400Invalid instance ID
401Authentication required
403Access denied
404Instance 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 workflowinstances = await client.workflow-instances.get('id_here');
8
9console.log(result);