Create form (XML)
documentedCreate a new form using XML payload.
POST /api_v1/forms/create.xmlFormsno 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://app.formassembly.com/api_v1/forms/create.xml" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"xml_data": "{{$xml_data}}", "builder_version": "{{$builder_version}}", "language": "{{$language}}", "name": "{{$name}}"}'