Edit form (XML)
documentedUpdate an existing form’s properties using XML payload.
POST /api_v1/forms/edit/{FORMID}.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/edit/{{$FORMID}}.xml" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/xml" \
-d '{"id": "{{$FORMID}}", "xml_data": "{{$xml_data}}", "builder_version": "{{$builder_version}}", "language": "{{$language}}", "name": "{{$name}}"}'