Sorry, no results found for "".
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const workflowId = "uJzC2b6YQg-DW2A5edpQYQ";7 await client.workflows.destroy(workflowId);8}9 10run();