Update multiple fields
documentedUpdate multiple fields in a form.
PATCH /wp-json/frm/v2/forms/{form_id}/fieldsFormsno 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://formidableforms.com/wp-json/frm/v2/forms/{{$form_id}}/fields" \
-X PATCH \
-u "{{FORMIDABLEFORMS_API_KEY}}:x" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"fields": [ {"field_key": "{{$field_key_1}}", "name": "{{$name_1}}", "description": "{{$description_1}}", "required": {{$required_1}} }, {"field_key": "{{$field_key_2}}", "name": "{{$name_2}}", "description": "{{$description_2}}", "required": {{$required_2}} } ] }'