import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const workflows = await client.workflows.list();workflows.forEach((workflow) => {console.log(workflow);});}run();
{id: '439239',name: 'Approval by editors required',api_key: 'approval_by_editors',stages: [{id: 'waiting_for_review',name: 'Waiting for review',initial: true}]}