Sign in

Edit form

documented

Update an existing form’s properties using JSON payload.

POST /api_v1/forms/edit/{FORMID}.jsonFormsno 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://app.formassembly.com/api_v1/forms/edit/{{$FORMID}}.json" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"id": "{{$FORMID}}", "xml_data": "{{$xml_data}}", "builder_version": "{{$builder_version}}", "language": "{{$language}}", "name": "{{$name}}"}'
Edit form · FormAssembly · OpenIntegrations