Update workflow run
documentedUpdate a workflow run's name, due date, status, and form-field values; optionally modify the share link.
PUT /v1.1/workflow-runs/{workflowRunId}Workflowsno 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/{{$workflowRunId}}" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-API-Key: {{PROCESS_API_KEY}}" \
-d '{"name": "{{$name}}", "status": "{{$status}}", "dueDate": "{{$dueDate}}", "shared": {{$shared}}}'