Branding
Customize the look and feel of your form.
Branding
PUT
/api/v1/forms/{id}/brandingRequired scope:write:forms
Request Body (all fields optional)
| Name | Type | Description |
|---|---|---|
| primary_color | string | Hex color for buttons and accents#6366F1 |
| background_color | string | null | Background hex color. null removes it. |
| welcome_heading | string | Heading shown on the form start screen |
| welcome_subtitle | string | Subtitle below the heading |
| thank_you_heading | string | Heading shown after submission |
| thank_you_message | string | Message 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."
}'