Create entry for form
documentedCreate an entry for a specific form.
POST /gf/v2/forms/{FORM_ID}/entriesEntriesno 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/gf/v2/forms/{{$FORM_ID}}/submissions" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"input_1": "{{$field_1}}", "input_2": "{{$field_2}}", "input_3": "{{$field_3}}", "input_4": "{{$field_4}}"}'