import Reminix from '@reminix/sdk';const client = new Reminix({ apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted});await client.workflowRuns.delete('x');
{ "error": "Invalid or missing API key"}
Workflow Runs
Delete a workflow run
Delete a workflow run. This action cannot be undone.
DELETE
/
workflow-runs
/
{runId}
JavaScript
import Reminix from '@reminix/sdk';const client = new Reminix({ apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted});await client.workflowRuns.delete('x');