Documentation Index
Fetch the complete documentation index at: https://launchdarkly-preview.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
This topic explains how to use form variables to collect configuration data from members when they begin using your integration. Most integrations need to collect one or more pieces of configuration data that support the integration, such as API tokens or webhook endpoints.Build form variables
To support your configuration, you must describe a set offormVariables that define your configuration properties. The formVariables populate a form in the LaunchDarkly user interface (UI) that members complete to add your integration.
Here’s an example:
formVariables entry above displays on the LaunchDarkly Integrations page:

key,name,description, andtypeare required.formVariables[].descriptionis used as a field label on the UI. You can use simple Markdown to link a word or phrase to an external URL.- Optionally, you can set
isSecretorisOptionalif necessary, or provide guidance withplaceholderanddefaultValue. If you provide adefaultValue, you must also setisOptionaltotrueand vice versa.
types are string, boolean, uri, enum, and dynamicEnum.
To learn more, read the manifest schema.