Sign in

Create Form

documented

Create a new Form (formz) in your account.

POST /v2/formzFormzno 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.goformz.com/v2/formz" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"template_id": "{{$template_id}}", "fields": [ {"field_id": "{{$field1_id}}", "value": "{{$value1}}"}, {"field_id": "{{$field2_id}}", "value": "{{$value2}}"}, {"field_id": "{{$field3_id}}", "value": "{{$value3}}"} ] }'