Sign in

Update field

documented

Update a single field.

PATCH /wp-json/frm/v2/forms/{form_id}/fields/{field_id}Formsno 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://{{$site_url}}/wp-json/frm/v2/forms/{{$form_id}}/fields/{{$field_id}}" \
  -X PATCH \
  -u "{{FORMIDABLEFORMS_API_KEY}}:x" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"form_id": {{$form_id}}, "field_id": {{$field_id}}, "name": "{{$name}}", "description": "{{$description}}", "required": {{$required}}, "field_key": "{{$field_key}}", "type": "{{$type}}", "options": {{$options}} }'
Update field · formidableforms · OpenIntegrations