Sign in

Update multiple form field values

documented

Update values for multiple form fields in a workflow run.

Workflowsno implementation yet0 runs
No 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}}/form-values" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"{{$field_id_1}}": "{{$value_1}}", "{{$field_id_2}}": ["{{$value_2}}"], "{{$field_id_3}}": {"subfield": "{{$value_3}}"}}'