For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Create a new integration configuration. (Excludes persistent store and flag import configurations.)
curl --request POST \
--url https://app.launchdarkly.com/api/v2/integration-configurations/keys/{integrationKey} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Example integration configuration",
"configValues": {
"optional": "an optional property",
"required": "the required property",
"url": "https://example.com"
},
"enabled": true,
"tags": [
"ops"
],
"capabilityConfig": "{\"auditLogEventsHook\": \"policy\": []\"}"
}
'{
"_links": {},
"_id": "<string>",
"name": "Example Datadog integration",
"_createdAt": 123,
"_integrationKey": "datadog",
"tags": [
"testing"
],
"enabled": true,
"_access": {
"denied": [
{
"action": "<string>",
"reason": {
"effect": "allow",
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"notResources": [
"<string>"
],
"actions": [
"*"
],
"notActions": [
"<string>"
],
"role_name": "<string>"
}
}
],
"allowed": [
{
"action": "<string>",
"reason": {
"effect": "allow",
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"notResources": [
"<string>"
],
"actions": [
"*"
],
"notActions": [
"<string>"
],
"role_name": "<string>"
}
}
]
},
"configValues": {},
"capabilityConfig": "{\"auditLogEventsHook\": \"statements\": []\"}",
"snowflakeSetupScript": "<string>"
}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.
The integration key
The name of the integration configuration
"Example integration configuration"
The unique set of fields required to configure the integration. Refer to the formVariables field in the corresponding manifest.json at https://github.com/launchdarkly/integration-framework/tree/main/integrations for a full list of fields for the integration you wish to configure.
Show child attributes
{
"optional": "an optional property",
"required": "the required property",
"url": "https://example.com"
}Whether the integration configuration is enabled. If omitted, defaults to true
true
Tags for the integration
["ops"]The capability configuration for the integration
Show child attributes
"{\"auditLogEventsHook\": \"policy\": []\"}"
Integration Configuration response
The location and content type of related resources
Show child attributes
The unique identifier for this integration configuration
A human-friendly name for the integration
"Example Datadog integration"
The time the integration configuration was created
The type of integration
"datadog"
An array of tags for this integration
["testing"]Whether the integration is currently active
Details on the allowed and denied actions for this integration configuration
Show child attributes
Details on configuration for an integration of this type. Refer to the formVariables field in the corresponding manifest.json for a full list of fields for each integration.
Show child attributes
The capability configuration for the integration
Show child attributes
"{\"auditLogEventsHook\": \"statements\": []\"}"
Consolidated SQL script for Snowflake Warehouse Native Experimentation setup. Present only for setup endpoint responses.
curl --request POST \
--url https://app.launchdarkly.com/api/v2/integration-configurations/keys/{integrationKey} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Example integration configuration",
"configValues": {
"optional": "an optional property",
"required": "the required property",
"url": "https://example.com"
},
"enabled": true,
"tags": [
"ops"
],
"capabilityConfig": "{\"auditLogEventsHook\": \"policy\": []\"}"
}
'{
"_links": {},
"_id": "<string>",
"name": "Example Datadog integration",
"_createdAt": 123,
"_integrationKey": "datadog",
"tags": [
"testing"
],
"enabled": true,
"_access": {
"denied": [
{
"action": "<string>",
"reason": {
"effect": "allow",
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"notResources": [
"<string>"
],
"actions": [
"*"
],
"notActions": [
"<string>"
],
"role_name": "<string>"
}
}
],
"allowed": [
{
"action": "<string>",
"reason": {
"effect": "allow",
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"notResources": [
"<string>"
],
"actions": [
"*"
],
"notActions": [
"<string>"
],
"role_name": "<string>"
}
}
]
},
"configValues": {},
"capabilityConfig": "{\"auditLogEventsHook\": \"statements\": []\"}",
"snowflakeSetupScript": "<string>"
}