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