Update entry by ID (PUT)
documentedUpdate an existing entry by ID.
PUT /wp-json/frm/v2/entries/{entry_id}Entriesno 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/entries/{{$entry_id}}" \
-X PUT \
-u "{{FORMIDABLEFORMS_API_KEY}}:x" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"item_meta": {"{{$field_id_1}}": "{{$field_value_1}}", "{{$field_id_2}}": "{{$field_value_2}}"}}'