Create form
documentedCreate a new form/template.
POST /api/v2/forms.jsonFormsno 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://api.fulcrumapp.com/api/v2/forms.json" \
-X POST \
-H "X-ApiToken: {{FULCRUMAPP_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"form": {"name": "{{$name}}", "description": "{{$description}}", "elements": [{"type": "TextField", "key": "{{$field_key}}", "label": "{{$field_label}}", "data_name": "{{$field_data_name}}", "description": "{{$field_description}}", "required": false, "disabled": false, "hidden": false, "default_value": "{{$default_value}}"}]}}'