For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Returns the migration safety issues that are associated with the POSTed flag patch. The patch must use the semantic patch format for updating feature flags.
curl --request POST \
--url https://app.launchdarkly.com/api/v2/projects/{projectKey}/flags/{flagKey}/environments/{environmentKey}/migration-safety-issues \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"instructions": [
{}
],
"comment": "<string>"
}
'[
{
"causingRuleId": "<string>",
"affectedRuleIds": [
"<string>"
],
"issue": "<string>",
"oldSystemAffected": true
}
]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 project key
The migration flag key
The environment key
Migration safety issues found
The ID of the rule which caused this issue
A list of the IDs of the rules which are affected by this issue. fallthrough is a sentinel value for the default rule.
A description of the issue that causingRuleId has caused for affectedRuleIds.
Whether the changes caused by causingRuleId bring inconsistency to the old system
curl --request POST \
--url https://app.launchdarkly.com/api/v2/projects/{projectKey}/flags/{flagKey}/environments/{environmentKey}/migration-safety-issues \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"instructions": [
{}
],
"comment": "<string>"
}
'[
{
"causingRuleId": "<string>",
"affectedRuleIds": [
"<string>"
],
"issue": "<string>",
"oldSystemAffected": true
}
]