Update entries in form
documentedUpdate entries for a specific form.
PATCH /wp-json/frm/v2/forms/{form_id}/entriesEntriesno 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://{{$site_url}}/wp-json/frm/v2/forms/{{$form_id}}/entries" \
-X PATCH \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-u "{{FORMIDABLEFORMS_API_KEY}}:x" \
-d '{"id":"{{$entry_id}}","form_id":"{{$form_id}}","{{$field_1_key}}":"{{$field_1_value}}","{{$field_2_key}}":"{{$field_2_value}}"}'