Sign in

Submit form

documented

Create a new submission for the specified form.

POST /form/{form_id}/submissionsFormsno 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://api.jotform.com/v1/form/{{$form_id}}/submissions" \
  -X POST \
  -H "APIKEY: {{JOTFORM_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"submission": {"15_first": "{{$first_name}}", "15_last": "{{$last_name}}", "16": "{{$email}}", "17": "{{$company}}"}}'