Submit form submission
documentedSubmit a form via the complete submission process.
POST /gf/v2/forms/{FORM_ID}/submissionsFormsno 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://{{$base_url}}/wp-json/gf/v2/forms/{{$FORM_ID}}/submissions" \
-X POST \
-u "{{GRAVITYFORMS_API_KEY}}:{{GRAVITYFORMS_SECRET}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"input_1": "{{$input_1}}", "input_2": "{{$input_2}}"}'