Workflow Approvals
5 endpoints
List pending workflow approvals for current user
Lists workflow approval requests that the authenticated user can approve or has submitted
Parameters
limitResponses
200List of pending approvals
401Authentication required
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.workflow-approvals.list({8 limit: 1,9});1011console.log(result);