Sign in

Update entry by ID (POST)

documented

Update an existing entry by ID.

POST /wp-json/frm/v2/entries/{entry_id}Entriesno 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_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}}"}'
Update entry by ID (POST) · formidableforms · OpenIntegrations