Sign in

Update entry by ID (PUT)

documented

Update an existing entry by ID.

PUT /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_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}}"}}'
Update entry by ID (PUT) · formidableforms · OpenIntegrations