Create workflow run
documentedCreate a new workflow run with a specified workflow, name, and due date.
POST /v1.1/workflow-runsWorkflowsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://public-api.process.st/api/v1.1/workflow-runs" \
-X POST \
-H "X-API-KEY: {{PROCESS_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"workflowId": "{{$workflow_id}}", "name": "{{$name}}", "dueDate": "{{$due_date}}", "shared": {{$shared}}}'