Update entry
documentedReplace an existing form entry with new data.
PUT /api/forms/{form_id}/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://www.cognitoforms.com/api/forms/{{$form_id}}/entries/{{$entry_id}}" \
-X PUT \
-H "Authorization: Bearer {{COGNITOFORMS_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"entry": {"{{$field1_json}}": "{{$value1}}", "{{$field2_json}}": "{{$value2}}", "{{$address_line1_json}}": "{{$address_line1}}", "{{$city_json}}": "{{$city}}", "{{$state_json}}": "{{$state}}", "{{$postal_json}}": "{{$postal_code}}", "{{$country_json}}": "{{$country}}"} }'