Skip to main content
Formalingo

Branding

Customize the look and feel of your form.

Branding

PUT/api/v1/forms/{id}/branding
Required scope:write:forms
Request Body (all fields optional)
NameTypeDescription
primary_colorstringHex color for buttons and accents#6366F1
background_colorstring | nullBackground hex color. null removes it.
welcome_headingstringHeading shown on the form start screen
welcome_subtitlestringSubtitle below the heading
thank_you_headingstringHeading shown after submission
thank_you_messagestringMessage shown after submission
curl -X PUT https://formalingo.com/api/v1/forms/FORM_ID/branding \
  -H "Authorization: Bearer af_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "primary_color": "#6366F1",
    "welcome_heading": "Welcome! 👋",
    "welcome_subtitle": "This will only take a minute.",
    "thank_you_heading": "Thank you!",
    "thank_you_message": "We appreciate your feedback."
  }'

On this page